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.

570 lines
18KB

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