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.

554 lines
17KB

  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 Libav.
  16. *
  17. * Libav 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. * Libav 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 Libav; 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. default:
  84. return NULL;
  85. }
  86. return frame[offs] == t ? &frame[offs] : NULL;
  87. }
  88. static const int dv_audio_frequency[3] = {
  89. 48000, 44100, 32000,
  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. if (freq >= FF_ARRAY_ELEMS(dv_audio_frequency))
  115. return AVERROR_INVALIDDATA;
  116. size = (sys->audio_min_samples[freq] + smpls) * 4; /* 2ch, 2bytes */
  117. half_ch = sys->difseg_size / 2;
  118. /* We work with 720p frames split in half, thus even frames have
  119. * channels 0,1 and odd 2,3. */
  120. ipcm = (sys->height == 720 && !(frame[1] & 0x0C)) ? 2 : 0;
  121. /* for each DIF channel */
  122. for (chan = 0; chan < sys->n_difchan; chan++) {
  123. /* next stereo channel (50Mbps and 100Mbps only) */
  124. pcm = ppcm[ipcm++];
  125. if (!pcm)
  126. break;
  127. /* for each DIF segment */
  128. for (i = 0; i < sys->difseg_size; i++) {
  129. frame += 6 * 80; /* skip DIF segment header */
  130. if (quant == 1 && i == half_ch) {
  131. /* next stereo channel (12bit mode only) */
  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 (freq >= FF_ARRAY_ELEMS(dv_audio_frequency)) {
  186. av_log(c->fctx, AV_LOG_ERROR,
  187. "Unrecognized audio sample rate index (%d)\n", freq);
  188. return 0;
  189. }
  190. if (stype > 3) {
  191. av_log(c->fctx, AV_LOG_ERROR, "stype %d is invalid\n", stype);
  192. c->ach = 0;
  193. return 0;
  194. }
  195. /* note: ach counts PAIRS of channels (i.e. stereo channels) */
  196. ach = ((int[4]){ 1, 0, 2, 4})[stype];
  197. if (ach == 1 && quant && freq == 2)
  198. ach = 2;
  199. /* Dynamic handling of the audio streams in DV */
  200. for (i = 0; i < ach; i++) {
  201. if (!c->ast[i]) {
  202. c->ast[i] = avformat_new_stream(c->fctx, NULL);
  203. if (!c->ast[i])
  204. break;
  205. avpriv_set_pts_info(c->ast[i], 64, 1, 30000);
  206. c->ast[i]->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  207. c->ast[i]->codec->codec_id = CODEC_ID_PCM_S16LE;
  208. av_init_packet(&c->audio_pkt[i]);
  209. c->audio_pkt[i].size = 0;
  210. c->audio_pkt[i].data = c->audio_buf[i];
  211. c->audio_pkt[i].stream_index = c->ast[i]->index;
  212. c->audio_pkt[i].flags |= AV_PKT_FLAG_KEY;
  213. }
  214. c->ast[i]->codec->sample_rate = dv_audio_frequency[freq];
  215. c->ast[i]->codec->channels = 2;
  216. c->ast[i]->codec->bit_rate = 2 * dv_audio_frequency[freq] * 16;
  217. c->ast[i]->start_time = 0;
  218. }
  219. c->ach = i;
  220. return (c->sys->audio_min_samples[freq] + smpls) * 4; /* 2ch, 2bytes */;
  221. }
  222. static int dv_extract_video_info(DVDemuxContext *c, uint8_t* frame)
  223. {
  224. const uint8_t* vsc_pack;
  225. AVCodecContext* avctx;
  226. int apt, is16_9;
  227. int size = 0;
  228. if (c->sys) {
  229. avctx = c->vst->codec;
  230. avpriv_set_pts_info(c->vst, 64, c->sys->time_base.num,
  231. c->sys->time_base.den);
  232. avctx->time_base= c->sys->time_base;
  233. if (!avctx->width){
  234. avctx->width = c->sys->width;
  235. avctx->height = c->sys->height;
  236. }
  237. avctx->pix_fmt = c->sys->pix_fmt;
  238. /* finding out SAR is a little bit messy */
  239. vsc_pack = dv_extract_pack(frame, dv_video_control);
  240. apt = frame[4] & 0x07;
  241. is16_9 = (vsc_pack && ((vsc_pack[2] & 0x07) == 0x02 ||
  242. (!apt && (vsc_pack[2] & 0x07) == 0x07)));
  243. c->vst->sample_aspect_ratio = c->sys->sar[is16_9];
  244. avctx->bit_rate = av_rescale_q(c->sys->frame_size, (AVRational){8,1},
  245. c->sys->time_base);
  246. size = c->sys->frame_size;
  247. }
  248. return size;
  249. }
  250. /*
  251. * The following 3 functions constitute our interface to the world
  252. */
  253. DVDemuxContext* avpriv_dv_init_demux(AVFormatContext *s)
  254. {
  255. DVDemuxContext *c;
  256. c = av_mallocz(sizeof(DVDemuxContext));
  257. if (!c)
  258. return NULL;
  259. c->vst = avformat_new_stream(s, NULL);
  260. if (!c->vst) {
  261. av_free(c);
  262. return NULL;
  263. }
  264. c->sys = NULL;
  265. c->fctx = s;
  266. memset(c->ast, 0, sizeof(c->ast));
  267. c->ach = 0;
  268. c->frames = 0;
  269. c->abytes = 0;
  270. c->vst->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  271. c->vst->codec->codec_id = CODEC_ID_DVVIDEO;
  272. c->vst->codec->bit_rate = 25000000;
  273. c->vst->start_time = 0;
  274. return c;
  275. }
  276. int avpriv_dv_get_packet(DVDemuxContext *c, AVPacket *pkt)
  277. {
  278. int size = -1;
  279. int i;
  280. for (i = 0; i < c->ach; i++) {
  281. if (c->ast[i] && c->audio_pkt[i].size) {
  282. *pkt = c->audio_pkt[i];
  283. c->audio_pkt[i].size = 0;
  284. size = pkt->size;
  285. break;
  286. }
  287. }
  288. return size;
  289. }
  290. int avpriv_dv_produce_packet(DVDemuxContext *c, AVPacket *pkt,
  291. uint8_t* buf, int buf_size)
  292. {
  293. int size, i;
  294. uint8_t *ppcm[4] = {0};
  295. if (buf_size < DV_PROFILE_BYTES ||
  296. !(c->sys = avpriv_dv_frame_profile(c->sys, buf, buf_size)) ||
  297. buf_size < c->sys->frame_size) {
  298. return -1; /* Broken frame, or not enough data */
  299. }
  300. /* Queueing audio packet */
  301. /* FIXME: in case of no audio/bad audio we have to do something */
  302. size = dv_extract_audio_info(c, buf);
  303. for (i = 0; i < c->ach; i++) {
  304. c->audio_pkt[i].size = size;
  305. c->audio_pkt[i].pts = c->abytes * 30000*8 / c->ast[i]->codec->bit_rate;
  306. ppcm[i] = c->audio_buf[i];
  307. }
  308. if (c->ach)
  309. dv_extract_audio(buf, ppcm, c->sys);
  310. /* We work with 720p frames split in half, thus even frames have
  311. * channels 0,1 and odd 2,3. */
  312. if (c->sys->height == 720) {
  313. if (buf[1] & 0x0C) {
  314. c->audio_pkt[2].size = c->audio_pkt[3].size = 0;
  315. } else {
  316. c->audio_pkt[0].size = c->audio_pkt[1].size = 0;
  317. c->abytes += size;
  318. }
  319. } else {
  320. c->abytes += size;
  321. }
  322. /* Now it's time to return video packet */
  323. size = dv_extract_video_info(c, buf);
  324. av_init_packet(pkt);
  325. pkt->data = buf;
  326. pkt->size = size;
  327. pkt->flags |= AV_PKT_FLAG_KEY;
  328. pkt->stream_index = c->vst->id;
  329. pkt->pts = c->frames;
  330. c->frames++;
  331. return size;
  332. }
  333. static int64_t dv_frame_offset(AVFormatContext *s, DVDemuxContext *c,
  334. int64_t timestamp, int flags)
  335. {
  336. // FIXME: sys may be wrong if last dv_read_packet() failed (buffer is junk)
  337. const DVprofile* sys = avpriv_dv_codec_profile(c->vst->codec);
  338. int64_t offset;
  339. int64_t size = avio_size(s->pb) - s->data_offset;
  340. int64_t max_offset = ((size-1) / sys->frame_size) * sys->frame_size;
  341. offset = sys->frame_size * timestamp;
  342. if (size >= 0 && offset > max_offset) offset = max_offset;
  343. else if (offset < 0) offset = 0;
  344. return offset + s->data_offset;
  345. }
  346. void ff_dv_offset_reset(DVDemuxContext *c, int64_t frame_offset)
  347. {
  348. c->frames= frame_offset;
  349. if (c->ach)
  350. c->abytes= av_rescale_q(c->frames, c->sys->time_base,
  351. (AVRational){8, c->ast[0]->codec->bit_rate});
  352. c->audio_pkt[0].size = c->audio_pkt[1].size = 0;
  353. c->audio_pkt[2].size = c->audio_pkt[3].size = 0;
  354. }
  355. /************************************************************
  356. * Implementation of the easiest DV storage of all -- raw DV.
  357. ************************************************************/
  358. typedef struct RawDVContext {
  359. DVDemuxContext* dv_demux;
  360. uint8_t buf[DV_MAX_FRAME_SIZE];
  361. } RawDVContext;
  362. static int dv_read_header(AVFormatContext *s)
  363. {
  364. unsigned state, marker_pos = 0;
  365. RawDVContext *c = s->priv_data;
  366. c->dv_demux = avpriv_dv_init_demux(s);
  367. if (!c->dv_demux)
  368. return -1;
  369. state = avio_rb32(s->pb);
  370. while ((state & 0xffffff7f) != 0x1f07003f) {
  371. if (s->pb->eof_reached) {
  372. av_log(s, AV_LOG_ERROR, "Cannot find DV header.\n");
  373. return -1;
  374. }
  375. if (state == 0x003f0700 || state == 0xff3f0700)
  376. marker_pos = avio_tell(s->pb);
  377. if (state == 0xff3f0701 && avio_tell(s->pb) - marker_pos == 80) {
  378. avio_seek(s->pb, -163, SEEK_CUR);
  379. state = avio_rb32(s->pb);
  380. break;
  381. }
  382. state = (state << 8) | avio_r8(s->pb);
  383. }
  384. AV_WB32(c->buf, state);
  385. if (avio_read(s->pb, c->buf + 4, DV_PROFILE_BYTES - 4) <= 0 ||
  386. avio_seek(s->pb, -DV_PROFILE_BYTES, SEEK_CUR) < 0)
  387. return AVERROR(EIO);
  388. c->dv_demux->sys = avpriv_dv_frame_profile(c->dv_demux->sys, c->buf, DV_PROFILE_BYTES);
  389. if (!c->dv_demux->sys) {
  390. av_log(s, AV_LOG_ERROR, "Can't determine profile of DV input stream.\n");
  391. return -1;
  392. }
  393. s->bit_rate = av_rescale_q(c->dv_demux->sys->frame_size, (AVRational){8,1},
  394. c->dv_demux->sys->time_base);
  395. return 0;
  396. }
  397. static int dv_read_packet(AVFormatContext *s, AVPacket *pkt)
  398. {
  399. int size;
  400. RawDVContext *c = s->priv_data;
  401. size = avpriv_dv_get_packet(c->dv_demux, pkt);
  402. if (size < 0) {
  403. if (!c->dv_demux->sys)
  404. return AVERROR(EIO);
  405. size = c->dv_demux->sys->frame_size;
  406. if (avio_read(s->pb, c->buf, size) <= 0)
  407. return AVERROR(EIO);
  408. size = avpriv_dv_produce_packet(c->dv_demux, pkt, c->buf, size);
  409. }
  410. return size;
  411. }
  412. static int dv_read_seek(AVFormatContext *s, int stream_index,
  413. int64_t timestamp, int flags)
  414. {
  415. RawDVContext *r = s->priv_data;
  416. DVDemuxContext *c = r->dv_demux;
  417. int64_t offset = dv_frame_offset(s, c, timestamp, flags);
  418. if (avio_seek(s->pb, offset, SEEK_SET) < 0)
  419. return -1;
  420. ff_dv_offset_reset(c, offset / c->sys->frame_size);
  421. return 0;
  422. }
  423. static int dv_read_close(AVFormatContext *s)
  424. {
  425. RawDVContext *c = s->priv_data;
  426. av_free(c->dv_demux);
  427. return 0;
  428. }
  429. static int dv_probe(AVProbeData *p)
  430. {
  431. unsigned state, marker_pos = 0;
  432. int i;
  433. int matches = 0;
  434. int secondary_matches = 0;
  435. if (p->buf_size < 5)
  436. return 0;
  437. state = AV_RB32(p->buf);
  438. for (i = 4; i < p->buf_size; i++) {
  439. if ((state & 0xffffff7f) == 0x1f07003f)
  440. matches++;
  441. // any section header, also with seq/chan num != 0,
  442. // should appear around every 12000 bytes, at least 10 per frame
  443. if ((state & 0xff07ff7f) == 0x1f07003f)
  444. secondary_matches++;
  445. if (state == 0x003f0700 || state == 0xff3f0700)
  446. marker_pos = i;
  447. if (state == 0xff3f0701 && i - marker_pos == 80)
  448. matches++;
  449. state = (state << 8) | p->buf[i];
  450. }
  451. if (matches && p->buf_size / matches < 1024*1024) {
  452. if (matches > 4 || (secondary_matches >= 10 && p->buf_size / secondary_matches < 24000))
  453. return AVPROBE_SCORE_MAX*3/4; // not max to avoid dv in mov to match
  454. return AVPROBE_SCORE_MAX/4;
  455. }
  456. return 0;
  457. }
  458. #if CONFIG_DV_DEMUXER
  459. AVInputFormat ff_dv_demuxer = {
  460. .name = "dv",
  461. .long_name = NULL_IF_CONFIG_SMALL("DV video format"),
  462. .priv_data_size = sizeof(RawDVContext),
  463. .read_probe = dv_probe,
  464. .read_header = dv_read_header,
  465. .read_packet = dv_read_packet,
  466. .read_close = dv_read_close,
  467. .read_seek = dv_read_seek,
  468. .extensions = "dv,dif",
  469. };
  470. #endif