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.

636 lines
20KB

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