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.

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