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.

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