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.

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