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.

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