You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

612 lines
19KB

  1. /*
  2. * General DV muxer/demuxer
  3. * Copyright (c) 2003 Roman Shaposhnik
  4. *
  5. * Many thanks to Dan Dennedy <dan@dennedy.org> for providing wealth
  6. * of DV technical info.
  7. *
  8. * Raw DV format
  9. * Copyright (c) 2002 Fabrice Bellard
  10. *
  11. * 50 Mbps (DVCPRO50) and 100 Mbps (DVCPRO HD) support
  12. * Copyright (c) 2006 Daniel Maas <dmaas@maasdigital.com>
  13. * Funded by BBC Research & Development
  14. *
  15. * This file is part of FFmpeg.
  16. *
  17. * FFmpeg is free software; you can redistribute it and/or
  18. * modify it under the terms of the GNU Lesser General Public
  19. * License as published by the Free Software Foundation; either
  20. * version 2.1 of the License, or (at your option) any later version.
  21. *
  22. * FFmpeg is distributed in the hope that it will be useful,
  23. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  24. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  25. * Lesser General Public License for more details.
  26. *
  27. * You should have received a copy of the GNU Lesser General Public
  28. * License along with FFmpeg; if not, write to the Free Software
  29. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  30. */
  31. #include <time.h>
  32. #include "avformat.h"
  33. #include "internal.h"
  34. #include "libavcodec/dvdata.h"
  35. #include "libavutil/intreadwrite.h"
  36. #include "libavutil/mathematics.h"
  37. #include "libavutil/timecode.h"
  38. #include "dv.h"
  39. #include "libavutil/avassert.h"
  40. struct DVDemuxContext {
  41. const DVprofile* sys; /* Current DV profile. E.g.: 525/60, 625/50 */
  42. AVFormatContext* fctx;
  43. AVStream* vst;
  44. AVStream* ast[4];
  45. AVPacket audio_pkt[4];
  46. uint8_t audio_buf[4][8192];
  47. int ach;
  48. int frames;
  49. uint64_t abytes;
  50. };
  51. static inline uint16_t dv_audio_12to16(uint16_t sample)
  52. {
  53. uint16_t shift, result;
  54. sample = (sample < 0x800) ? sample : sample | 0xf000;
  55. shift = (sample & 0xf00) >> 8;
  56. if (shift < 0x2 || shift > 0xd) {
  57. result = sample;
  58. } else if (shift < 0x8) {
  59. shift--;
  60. result = (sample - (256 * shift)) << shift;
  61. } else {
  62. shift = 0xe - shift;
  63. result = ((sample + ((256 * shift) + 1)) << shift) - 1;
  64. }
  65. return result;
  66. }
  67. /*
  68. * This is the dumbest implementation of all -- it simply looks at
  69. * a fixed offset and if pack isn't there -- fails. We might want
  70. * to have a fallback mechanism for complete search of missing packs.
  71. */
  72. static const uint8_t* dv_extract_pack(uint8_t* frame, enum dv_pack_type t)
  73. {
  74. int offs;
  75. switch (t) {
  76. case dv_audio_source:
  77. offs = (80*6 + 80*16*3 + 3);
  78. break;
  79. case dv_audio_control:
  80. offs = (80*6 + 80*16*4 + 3);
  81. break;
  82. case dv_video_control:
  83. offs = (80*5 + 48 + 5);
  84. break;
  85. case dv_timecode:
  86. offs = (80*1 + 3 + 3);
  87. break;
  88. default:
  89. return NULL;
  90. }
  91. return frame[offs] == t ? &frame[offs] : NULL;
  92. }
  93. static const int dv_audio_frequency[3] = {
  94. 48000, 44100, 32000,
  95. };
  96. /*
  97. * There's a couple of assumptions being made here:
  98. * 1. By default we silence erroneous (0x8000/16bit 0x800/12bit) audio samples.
  99. * We can pass them upwards when libavcodec will be ready to deal with them.
  100. * 2. We don't do software emphasis.
  101. * 3. Audio is always returned as 16bit linear samples: 12bit nonlinear samples
  102. * are converted into 16bit linear ones.
  103. */
  104. static int dv_extract_audio(uint8_t* frame, uint8_t* ppcm[4],
  105. const DVprofile *sys)
  106. {
  107. int size, chan, i, j, d, of, smpls, freq, quant, half_ch;
  108. uint16_t lc, rc;
  109. const uint8_t* as_pack;
  110. uint8_t *pcm, ipcm;
  111. as_pack = dv_extract_pack(frame, dv_audio_source);
  112. if (!as_pack) /* No audio ? */
  113. return 0;
  114. smpls = as_pack[1] & 0x3f; /* samples in this frame - min. samples */
  115. freq = (as_pack[4] >> 3) & 0x07; /* 0 - 48kHz, 1 - 44,1kHz, 2 - 32kHz */
  116. quant = as_pack[4] & 0x07; /* 0 - 16bit linear, 1 - 12bit nonlinear */
  117. if (quant > 1)
  118. return -1; /* unsupported quantization */
  119. if (freq >= FF_ARRAY_ELEMS(dv_audio_frequency))
  120. return AVERROR_INVALIDDATA;
  121. size = (sys->audio_min_samples[freq] + smpls) * 4; /* 2ch, 2bytes */
  122. half_ch = sys->difseg_size / 2;
  123. /* We work with 720p frames split in half, thus even frames have
  124. * channels 0,1 and odd 2,3. */
  125. ipcm = (sys->height == 720 && !(frame[1] & 0x0C)) ? 2 : 0;
  126. /* for each DIF channel */
  127. for (chan = 0; chan < sys->n_difchan; chan++) {
  128. av_assert0(ipcm<4);
  129. pcm = ppcm[ipcm++];
  130. if (!pcm)
  131. break;
  132. /* for each DIF segment */
  133. for (i = 0; i < sys->difseg_size; i++) {
  134. frame += 6 * 80; /* skip DIF segment header */
  135. if (quant == 1 && i == half_ch) {
  136. /* next stereo channel (12bit mode only) */
  137. av_assert0(ipcm<4);
  138. pcm = ppcm[ipcm++];
  139. if (!pcm)
  140. break;
  141. }
  142. /* for each AV sequence */
  143. for (j = 0; j < 9; j++) {
  144. for (d = 8; d < 80; d += 2) {
  145. if (quant == 0) { /* 16bit quantization */
  146. of = sys->audio_shuffle[i][j] + (d - 8) / 2 * sys->audio_stride;
  147. if (of*2 >= size)
  148. continue;
  149. pcm[of*2] = frame[d+1]; // FIXME: maybe we have to admit
  150. pcm[of*2+1] = frame[d]; // that DV is a big-endian PCM
  151. if (pcm[of*2+1] == 0x80 && pcm[of*2] == 0x00)
  152. pcm[of*2+1] = 0;
  153. } else { /* 12bit quantization */
  154. lc = ((uint16_t)frame[d] << 4) |
  155. ((uint16_t)frame[d+2] >> 4);
  156. rc = ((uint16_t)frame[d+1] << 4) |
  157. ((uint16_t)frame[d+2] & 0x0f);
  158. lc = (lc == 0x800 ? 0 : dv_audio_12to16(lc));
  159. rc = (rc == 0x800 ? 0 : dv_audio_12to16(rc));
  160. of = sys->audio_shuffle[i%half_ch][j] + (d - 8) / 3 * sys->audio_stride;
  161. if (of*2 >= size)
  162. continue;
  163. pcm[of*2] = lc & 0xff; // FIXME: maybe we have to admit
  164. pcm[of*2+1] = lc >> 8; // that DV is a big-endian PCM
  165. of = sys->audio_shuffle[i%half_ch+half_ch][j] +
  166. (d - 8) / 3 * sys->audio_stride;
  167. pcm[of*2] = rc & 0xff; // FIXME: maybe we have to admit
  168. pcm[of*2+1] = rc >> 8; // that DV is a big-endian PCM
  169. ++d;
  170. }
  171. }
  172. frame += 16 * 80; /* 15 Video DIFs + 1 Audio DIF */
  173. }
  174. }
  175. }
  176. return size;
  177. }
  178. static int dv_extract_audio_info(DVDemuxContext* c, uint8_t* frame)
  179. {
  180. const uint8_t* as_pack;
  181. int freq, stype, smpls, quant, i, ach;
  182. as_pack = dv_extract_pack(frame, dv_audio_source);
  183. if (!as_pack || !c->sys) { /* No audio ? */
  184. c->ach = 0;
  185. return 0;
  186. }
  187. smpls = as_pack[1] & 0x3f; /* samples in this frame - min. samples */
  188. freq = (as_pack[4] >> 3) & 0x07; /* 0 - 48kHz, 1 - 44,1kHz, 2 - 32kHz */
  189. stype = (as_pack[3] & 0x1f); /* 0 - 2CH, 2 - 4CH, 3 - 8CH */
  190. quant = as_pack[4] & 0x07; /* 0 - 16bit linear, 1 - 12bit nonlinear */
  191. if (freq >= FF_ARRAY_ELEMS(dv_audio_frequency)) {
  192. av_log(c->fctx, AV_LOG_ERROR,
  193. "Unrecognized audio sample rate index (%d)\n", freq);
  194. return 0;
  195. }
  196. if (stype > 3) {
  197. av_log(c->fctx, AV_LOG_ERROR, "stype %d is invalid\n", stype);
  198. c->ach = 0;
  199. return 0;
  200. }
  201. /* note: ach counts PAIRS of channels (i.e. stereo channels) */
  202. ach = ((int[4]){ 1, 0, 2, 4})[stype];
  203. if (ach == 1 && quant && freq == 2)
  204. ach = 2;
  205. /* Dynamic handling of the audio streams in DV */
  206. for (i = 0; i < ach; i++) {
  207. if (!c->ast[i]) {
  208. c->ast[i] = avformat_new_stream(c->fctx, NULL);
  209. if (!c->ast[i])
  210. break;
  211. avpriv_set_pts_info(c->ast[i], 64, 1, 30000);
  212. c->ast[i]->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  213. c->ast[i]->codec->codec_id = CODEC_ID_PCM_S16LE;
  214. av_init_packet(&c->audio_pkt[i]);
  215. c->audio_pkt[i].size = 0;
  216. c->audio_pkt[i].data = c->audio_buf[i];
  217. c->audio_pkt[i].stream_index = c->ast[i]->index;
  218. c->audio_pkt[i].flags |= AV_PKT_FLAG_KEY;
  219. }
  220. c->ast[i]->codec->sample_rate = dv_audio_frequency[freq];
  221. c->ast[i]->codec->channels = 2;
  222. c->ast[i]->codec->bit_rate = 2 * dv_audio_frequency[freq] * 16;
  223. c->ast[i]->start_time = 0;
  224. }
  225. c->ach = i;
  226. return (c->sys->audio_min_samples[freq] + smpls) * 4; /* 2ch, 2bytes */;
  227. }
  228. static int dv_extract_video_info(DVDemuxContext *c, uint8_t* frame)
  229. {
  230. const uint8_t* vsc_pack;
  231. AVCodecContext* avctx;
  232. int apt, is16_9;
  233. int size = 0;
  234. if (c->sys) {
  235. avctx = c->vst->codec;
  236. avpriv_set_pts_info(c->vst, 64, c->sys->time_base.num,
  237. c->sys->time_base.den);
  238. avctx->time_base= c->sys->time_base;
  239. if (!avctx->width)
  240. avcodec_set_dimensions(avctx, c->sys->width, c->sys->height);
  241. avctx->pix_fmt = c->sys->pix_fmt;
  242. /* finding out SAR is a little bit messy */
  243. vsc_pack = dv_extract_pack(frame, dv_video_control);
  244. apt = frame[4] & 0x07;
  245. is16_9 = (vsc_pack && ((vsc_pack[2] & 0x07) == 0x02 ||
  246. (!apt && (vsc_pack[2] & 0x07) == 0x07)));
  247. c->vst->sample_aspect_ratio = c->sys->sar[is16_9];
  248. avctx->bit_rate = av_rescale_q(c->sys->frame_size, (AVRational){8,1},
  249. c->sys->time_base);
  250. size = c->sys->frame_size;
  251. }
  252. return size;
  253. }
  254. static int dv_extract_timecode(DVDemuxContext* c, uint8_t* frame, char *tc)
  255. {
  256. const uint8_t *tc_pack;
  257. // For PAL systems, drop frame bit is replaced by an arbitrary
  258. // bit so its value should not be considered. Drop frame timecode
  259. // is only relevant for NTSC systems.
  260. int prevent_df = c->sys->ltc_divisor == 25 || c->sys->ltc_divisor == 50;
  261. tc_pack = dv_extract_pack(frame, dv_timecode);
  262. if (!tc_pack)
  263. return 0;
  264. av_timecode_make_smpte_tc_string(tc, AV_RB32(tc_pack + 1), prevent_df);
  265. return 1;
  266. }
  267. /*
  268. * The following 3 functions constitute our interface to the world
  269. */
  270. DVDemuxContext* avpriv_dv_init_demux(AVFormatContext *s)
  271. {
  272. DVDemuxContext *c;
  273. c = av_mallocz(sizeof(DVDemuxContext));
  274. if (!c)
  275. return NULL;
  276. c->vst = avformat_new_stream(s, NULL);
  277. if (!c->vst) {
  278. av_free(c);
  279. return NULL;
  280. }
  281. c->sys = NULL;
  282. c->fctx = s;
  283. memset(c->ast, 0, sizeof(c->ast));
  284. c->ach = 0;
  285. c->frames = 0;
  286. c->abytes = 0;
  287. c->vst->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  288. c->vst->codec->codec_id = CODEC_ID_DVVIDEO;
  289. c->vst->codec->bit_rate = 25000000;
  290. c->vst->start_time = 0;
  291. return c;
  292. }
  293. int avpriv_dv_get_packet(DVDemuxContext *c, AVPacket *pkt)
  294. {
  295. int size = -1;
  296. int i;
  297. for (i = 0; i < c->ach; i++) {
  298. if (c->ast[i] && c->audio_pkt[i].size) {
  299. *pkt = c->audio_pkt[i];
  300. c->audio_pkt[i].size = 0;
  301. size = pkt->size;
  302. break;
  303. }
  304. }
  305. return size;
  306. }
  307. int avpriv_dv_produce_packet(DVDemuxContext *c, AVPacket *pkt,
  308. uint8_t* buf, int buf_size, int64_t pos)
  309. {
  310. int size, i;
  311. uint8_t *ppcm[4] = {0};
  312. if (buf_size < DV_PROFILE_BYTES ||
  313. !(c->sys = avpriv_dv_frame_profile(c->sys, buf, buf_size)) ||
  314. buf_size < c->sys->frame_size) {
  315. return -1; /* Broken frame, or not enough data */
  316. }
  317. /* Queueing audio packet */
  318. /* FIXME: in case of no audio/bad audio we have to do something */
  319. size = dv_extract_audio_info(c, buf);
  320. for (i = 0; i < c->ach; i++) {
  321. c->audio_pkt[i].pos = pos;
  322. c->audio_pkt[i].size = size;
  323. c->audio_pkt[i].pts = c->abytes * 30000*8 / c->ast[i]->codec->bit_rate;
  324. ppcm[i] = c->audio_buf[i];
  325. }
  326. if (c->ach)
  327. dv_extract_audio(buf, ppcm, c->sys);
  328. /* We work with 720p frames split in half, thus even frames have
  329. * channels 0,1 and odd 2,3. */
  330. if (c->sys->height == 720) {
  331. if (buf[1] & 0x0C) {
  332. c->audio_pkt[2].size = c->audio_pkt[3].size = 0;
  333. } else {
  334. c->audio_pkt[0].size = c->audio_pkt[1].size = 0;
  335. c->abytes += size;
  336. }
  337. } else {
  338. c->abytes += size;
  339. }
  340. /* Now it's time to return video packet */
  341. size = dv_extract_video_info(c, buf);
  342. av_init_packet(pkt);
  343. pkt->data = buf;
  344. pkt->pos = pos;
  345. pkt->size = size;
  346. pkt->flags |= AV_PKT_FLAG_KEY;
  347. pkt->stream_index = c->vst->id;
  348. pkt->pts = c->frames;
  349. c->frames++;
  350. return size;
  351. }
  352. static int64_t dv_frame_offset(AVFormatContext *s, DVDemuxContext *c,
  353. int64_t timestamp, int flags)
  354. {
  355. // FIXME: sys may be wrong if last dv_read_packet() failed (buffer is junk)
  356. const DVprofile* sys = avpriv_dv_codec_profile(c->vst->codec);
  357. int64_t offset;
  358. int64_t size = avio_size(s->pb) - s->data_offset;
  359. int64_t max_offset = ((size-1) / sys->frame_size) * sys->frame_size;
  360. offset = sys->frame_size * timestamp;
  361. if (size >= 0 && offset > max_offset) offset = max_offset;
  362. else if (offset < 0) offset = 0;
  363. return offset + s->data_offset;
  364. }
  365. void ff_dv_offset_reset(DVDemuxContext *c, int64_t frame_offset)
  366. {
  367. c->frames= frame_offset;
  368. if (c->ach)
  369. c->abytes= av_rescale_q(c->frames, c->sys->time_base,
  370. (AVRational){8, c->ast[0]->codec->bit_rate});
  371. c->audio_pkt[0].size = c->audio_pkt[1].size = 0;
  372. c->audio_pkt[2].size = c->audio_pkt[3].size = 0;
  373. }
  374. /************************************************************
  375. * Implementation of the easiest DV storage of all -- raw DV.
  376. ************************************************************/
  377. typedef struct RawDVContext {
  378. DVDemuxContext* dv_demux;
  379. uint8_t buf[DV_MAX_FRAME_SIZE];
  380. } RawDVContext;
  381. static int dv_read_timecode(AVFormatContext *s) {
  382. int ret;
  383. char timecode[AV_TIMECODE_STR_SIZE];
  384. int64_t pos = avio_tell(s->pb);
  385. // Read 3 DIF blocks: Header block and 2 Subcode blocks.
  386. int partial_frame_size = 3 * 80;
  387. uint8_t *partial_frame = av_mallocz(sizeof(*partial_frame) *
  388. partial_frame_size);
  389. RawDVContext *c = s->priv_data;
  390. ret = avio_read(s->pb, partial_frame, partial_frame_size);
  391. if (ret < 0)
  392. goto finish;
  393. if (ret < partial_frame_size) {
  394. ret = -1;
  395. goto finish;
  396. }
  397. ret = dv_extract_timecode(c->dv_demux, partial_frame, timecode);
  398. if (ret)
  399. av_dict_set(&s->metadata, "timecode", timecode, 0);
  400. else if (ret < 0)
  401. av_log(s, AV_LOG_ERROR, "Detected timecode is invalid");
  402. finish:
  403. av_free(partial_frame);
  404. avio_seek(s->pb, pos, SEEK_SET);
  405. return ret;
  406. }
  407. static int dv_read_header(AVFormatContext *s)
  408. {
  409. unsigned state, marker_pos = 0;
  410. RawDVContext *c = s->priv_data;
  411. c->dv_demux = avpriv_dv_init_demux(s);
  412. if (!c->dv_demux)
  413. return -1;
  414. state = avio_rb32(s->pb);
  415. while ((state & 0xffffff7f) != 0x1f07003f) {
  416. if (url_feof(s->pb)) {
  417. av_log(s, AV_LOG_ERROR, "Cannot find DV header.\n");
  418. return -1;
  419. }
  420. if (state == 0x003f0700 || state == 0xff3f0700)
  421. marker_pos = avio_tell(s->pb);
  422. if (state == 0xff3f0701 && avio_tell(s->pb) - marker_pos == 80) {
  423. avio_seek(s->pb, -163, SEEK_CUR);
  424. state = avio_rb32(s->pb);
  425. break;
  426. }
  427. state = (state << 8) | avio_r8(s->pb);
  428. }
  429. AV_WB32(c->buf, state);
  430. if (avio_read(s->pb, c->buf + 4, DV_PROFILE_BYTES - 4) <= 0 ||
  431. avio_seek(s->pb, -DV_PROFILE_BYTES, SEEK_CUR) < 0)
  432. return AVERROR(EIO);
  433. c->dv_demux->sys = avpriv_dv_frame_profile(c->dv_demux->sys, c->buf, DV_PROFILE_BYTES);
  434. if (!c->dv_demux->sys) {
  435. av_log(s, AV_LOG_ERROR, "Can't determine profile of DV input stream.\n");
  436. return -1;
  437. }
  438. s->bit_rate = av_rescale_q(c->dv_demux->sys->frame_size, (AVRational){8,1},
  439. c->dv_demux->sys->time_base);
  440. if (s->pb->seekable)
  441. dv_read_timecode(s);
  442. return 0;
  443. }
  444. static int dv_read_packet(AVFormatContext *s, AVPacket *pkt)
  445. {
  446. int size;
  447. RawDVContext *c = s->priv_data;
  448. size = avpriv_dv_get_packet(c->dv_demux, pkt);
  449. if (size < 0) {
  450. int64_t pos = avio_tell(s->pb);
  451. if (!c->dv_demux->sys)
  452. return AVERROR(EIO);
  453. size = c->dv_demux->sys->frame_size;
  454. if (avio_read(s->pb, c->buf, size) <= 0)
  455. return AVERROR(EIO);
  456. size = avpriv_dv_produce_packet(c->dv_demux, pkt, c->buf, size, pos);
  457. }
  458. return size;
  459. }
  460. static int dv_read_seek(AVFormatContext *s, int stream_index,
  461. int64_t timestamp, int flags)
  462. {
  463. RawDVContext *r = s->priv_data;
  464. DVDemuxContext *c = r->dv_demux;
  465. int64_t offset = dv_frame_offset(s, c, timestamp, flags);
  466. if (avio_seek(s->pb, offset, SEEK_SET) < 0)
  467. return -1;
  468. ff_dv_offset_reset(c, offset / c->sys->frame_size);
  469. return 0;
  470. }
  471. static int dv_read_close(AVFormatContext *s)
  472. {
  473. RawDVContext *c = s->priv_data;
  474. av_free(c->dv_demux);
  475. return 0;
  476. }
  477. static int dv_probe(AVProbeData *p)
  478. {
  479. unsigned state, marker_pos = 0;
  480. int i;
  481. int matches = 0;
  482. int secondary_matches = 0;
  483. if (p->buf_size < 5)
  484. return 0;
  485. state = AV_RB32(p->buf);
  486. for (i = 4; i < p->buf_size; i++) {
  487. if ((state & 0xffffff7f) == 0x1f07003f)
  488. matches++;
  489. // any section header, also with seq/chan num != 0,
  490. // should appear around every 12000 bytes, at least 10 per frame
  491. if ((state & 0xff07ff7f) == 0x1f07003f)
  492. secondary_matches++;
  493. if (state == 0x003f0700 || state == 0xff3f0700)
  494. marker_pos = i;
  495. if (state == 0xff3f0701 && i - marker_pos == 80)
  496. matches++;
  497. state = (state << 8) | p->buf[i];
  498. }
  499. if (matches && p->buf_size / matches < 1024*1024) {
  500. if (matches > 4 || (secondary_matches >= 10 && p->buf_size / secondary_matches < 24000))
  501. return AVPROBE_SCORE_MAX*3/4; // not max to avoid dv in mov to match
  502. return AVPROBE_SCORE_MAX/4;
  503. }
  504. return 0;
  505. }
  506. #if CONFIG_DV_DEMUXER
  507. AVInputFormat ff_dv_demuxer = {
  508. .name = "dv",
  509. .long_name = NULL_IF_CONFIG_SMALL("DV video format"),
  510. .priv_data_size = sizeof(RawDVContext),
  511. .read_probe = dv_probe,
  512. .read_header = dv_read_header,
  513. .read_packet = dv_read_packet,
  514. .read_close = dv_read_close,
  515. .read_seek = dv_read_seek,
  516. .extensions = "dv,dif",
  517. };
  518. #endif