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 */
42
44 const DVprofile*
sys;
/* Current DV profile. E.g.: 525/60, 625/50 */
53 };
54
56 {
57 uint16_t
shift, result;
58
59 sample = (sample < 0x800) ? sample : sample | 0xf000;
60 shift = (sample & 0xf00) >> 8;
61
62 if (shift < 0x2 || shift > 0xd) {
64 } else if (shift < 0x8) {
65 shift--;
67 } else {
69 result = ((sample + ((256 *
shift) + 1)) << shift) - 1;
70 }
71
72 return result;
73 }
74
75 /*
76 * This is the dumbest implementation of all -- it simply looks at
77 * a fixed offset and if pack isn't there -- fails. We might want
78 * to have a fallback mechanism for complete search of missing packs.
79 */
81 {
82 int offs;
83
84 switch (t) {
86 offs = (80 * 6 + 80 * 16 * 3 + 3);
87 break;
89 offs = (80 * 6 + 80 * 16 * 4 + 3);
90 break;
92 offs = (80 * 5 + 48 + 5);
93 break;
95 offs = (80*1 + 3 + 3);
96 break;
97 default:
98 return NULL;
99 }
100
101 return frame[offs] == t ? &frame[offs] : NULL;
102 }
103
105 48000, 44100, 32000,
106 };
107
108 /*
109 * There's a couple of assumptions being made here:
110 * 1. By default we silence erroneous (0x8000/16bit 0x800/12bit) audio samples.
111 * We can pass them upwards when libavcodec will be ready to deal with them.
112 * 2. We don't do software emphasis.
113 * 3. Audio is always returned as 16bit linear samples: 12bit nonlinear samples
114 * are converted into 16bit linear ones.
115 */
118 {
119 int size, chan, i, j, d, of, smpls, freq,
quant, half_ch;
120 uint16_t lc, rc;
123
125 if (!as_pack) /* No audio ? */
126 return 0;
127
128 smpls = as_pack[1] & 0x3f; /* samples in this frame - min. samples */
129 freq = as_pack[4] >> 3 & 0x07; /* 0 - 48kHz, 1 - 44,1kHz, 2 - 32kHz */
130 quant = as_pack[4] & 0x07; /* 0 - 16bit linear, 1 - 12bit nonlinear */
131
132 if (quant > 1)
133 return -1; /* unsupported quantization */
134
137
140
141 /* We work with 720p frames split in half, thus even frames have
142 * channels 0,1 and odd 2,3. */
143 ipcm = (sys->
height == 720 && !(frame[1] & 0x0C)) ? 2 : 0;
144
145 if (ipcm + sys->
n_difchan > (quant == 1 ? 2 : 4)) {
148 }
149
150 /* for each DIF channel */
151 for (chan = 0; chan < sys->
n_difchan; chan++) {
153 pcm = ppcm[ipcm++];
154 if (!pcm)
155 break;
156
157 /* for each DIF segment */
159 frame += 6 * 80; /* skip DIF segment header */
160 if (quant == 1 && i == half_ch) {
161 /* next stereo channel (12bit mode only) */
163 pcm = ppcm[ipcm++];
164 if (!pcm)
165 break;
166 }
167
168 /* for each AV sequence */
169 for (j = 0; j < 9; j++) {
170 for (d = 8; d < 80; d += 2) {
171 if (quant == 0) { /* 16bit quantization */
175 continue;
176
177 /* FIXME: maybe we have to admit that DV is a
178 * big-endian PCM */
179 pcm[of * 2] = frame[d + 1];
180 pcm[of * 2 + 1] = frame[d];
181
182 if (pcm[of * 2 + 1] == 0x80 && pcm[of * 2] == 0x00)
183 pcm[of * 2 + 1] = 0;
184 } else { /* 12bit quantization */
185 lc = ((uint16_t)frame[d] << 4) |
186 ((uint16_t)frame[d + 2] >> 4);
187 rc = ((uint16_t)frame[d + 1] << 4) |
188 ((uint16_t)frame[d + 2] & 0x0f);
191
195 continue;
196
197 /* FIXME: maybe we have to admit that DV is a
198 * big-endian PCM */
199 pcm[of * 2] = lc & 0xff;
200 pcm[of * 2 + 1] = lc >> 8;
203 /* FIXME: maybe we have to admit that DV is a
204 * big-endian PCM */
205 pcm[of * 2] = rc & 0xff;
206 pcm[of * 2 + 1] = rc >> 8;
207 ++d;
208 }
209 }
210
211 frame += 16 * 80; /* 15 Video DIFs + 1 Audio DIF */
212 }
213 }
214 }
215
217 }
218
220 {
222 int freq, stype, smpls,
quant, i, ach;
223
225 if (!as_pack || !c->
sys) {
/* No audio ? */
227 return 0;
228 }
229
230 smpls = as_pack[1] & 0x3f; /* samples in this frame - min. samples */
231 freq = as_pack[4] >> 3 & 0x07; /* 0 - 48kHz, 1 - 44,1kHz, 2 - 32kHz */
232 stype = as_pack[3] & 0x1f; /* 0 - 2CH, 2 - 4CH, 3 - 8CH */
233 quant = as_pack[4] & 0x07; /* 0 - 16bit linear, 1 - 12bit nonlinear */
234
237 "Unrecognized audio sample rate index (%d)\n", freq);
238 return 0;
239 }
240
241 if (stype > 3) {
244 return 0;
245 }
246
247 /* note: ach counts PAIRS of channels (i.e. stereo channels) */
248 ach = ((int[4]) { 1, 0, 2, 4 })[stype];
249 if (ach == 1 && quant && freq == 2)
250 ach = 2;
251
252 /* Dynamic handling of the audio streams in DV */
253 for (i = 0; i < ach; i++) {
257 break;
261
267 }
273 }
275
277 }
278
280 {
283 int apt, is16_9;
285
288
292
293 /* finding out SAR is a little bit messy */
295 apt = frame[4] & 0x07;
296 is16_9 = (vsc_pack && ((vsc_pack[2] & 0x07) == 0x02 ||
297 (!apt && (vsc_pack[2] & 0x07) == 0x07)));
303 }
305 }
306
308 {
310
311 // For PAL systems, drop frame bit is replaced by an arbitrary
312 // bit so its value should not be considered. Drop frame timecode
313 // is only relevant for NTSC systems.
315
317 if (!tc_pack)
318 return 0;
320 return 1;
321 }
322
323 /* The following 3 functions constitute our interface to the world */
324
326 {
328
330 if (!c)
331 return NULL;
332
336 return NULL;
337 }
338
344
346 }
347
349 {
351 int i;
352
353 for (i = 0; i < c->
ach; i++) {
358 break;
359 }
360 }
361
363 }
364
367 {
370
373 buf_size < c->sys->frame_size) {
374 return -1; /* Broken frame, or not enough data */
375 }
376
377 /* Queueing audio packet */
378 /* FIXME: in case of no audio/bad audio we have to do something */
380 for (i = 0; i < c->
ach; i++) {
386 }
389
390 /* We work with 720p frames split in half, thus even frames have
391 * channels 0,1 and odd 2,3. */
393 if (buf[1] & 0x0C) {
395 } else {
398 }
399 } else {
401 }
402
403 /* Now it's time to return video packet */
412
414
416 }
417
419 int64_t timestamp,
int flags)
420 {
421 // FIXME: sys may be wrong if last dv_read_packet() failed (buffer is junk)
426
428
429 if (size >= 0 && offset > max_offset)
430 offset = max_offset;
431 else if (offset < 0)
432 offset = 0;
433
435 }
436
438 {
444 } else
446 }
447 c->audio_pkt[0].size =
c->audio_pkt[1].size = 0;
448 c->audio_pkt[2].size =
c->audio_pkt[3].size = 0;
449 }
450
451 /************************************************************
452 * Implementation of the easiest DV storage of all -- raw DV.
453 ************************************************************/
454
459
464
465 // Read 3 DIF blocks: Header block and 2 Subcode blocks.
466 int partial_frame_size = 3 * 80;
468 partial_frame_size);
469
471 ret =
avio_read(s->
pb, partial_frame, partial_frame_size);
472 if (ret < 0)
474
475 if (ret < partial_frame_size) {
476 ret = -1;
478 }
479
481 if (ret)
483 else
485
490 }
491
493 {
494 unsigned state, marker_pos = 0;
496
499 return -1;
500
502 while ((state & 0xffffff7f) != 0x1f07003f) {
505 return -1;
506 }
507 if (state == 0x003f0700 || state == 0xff3f0700)
509 if (state == 0xff3f0701 &&
avio_tell(s->
pb) - marker_pos == 80) {
512 break;
513 }
515 }
517
521
527 "Can't determine profile of DV input stream.\n");
528 return -1;
529 }
530
533 c->dv_demux->sys->time_base);
534
537
538 return 0;
539 }
540
542 {
545
547
548 if (size < 0) {
555
557 }
558
560 }
561
563 int64_t timestamp,
int flags)
564 {
568
570 return -1;
571
573 return 0;
574 }
575
577 {
580 return 0;
581 }
582
584 {
585 unsigned marker_pos = 0;
586 int i;
587 int matches = 0;
588 int firstmatch = 0;
589 int secondary_matches = 0;
590
592 return 0;
593
594 for (i = 0; i < p->
buf_size-4; i++) {
596 if ((state & 0x0007f840) == 0x00070000) {
597 // any section header, also with seq/chan num != 0,
598 // should appear around every 12000 bytes, at least 10 per frame
599 if ((state & 0xff07ff7f) == 0x1f07003f) {
600 secondary_matches++;
601 if ((state & 0xffffff7f) == 0x1f07003f) {
602 matches++;
603 if (!i)
604 firstmatch = 1;
605 }
606 }
607 if (state == 0x003f0700 || state == 0xff3f0700)
608 marker_pos = i;
609 if (state == 0xff3f0701 && i - marker_pos == 80)
610 matches++;
611 }
612 }
613
614 if (matches && p->
buf_size / matches < 1024 * 1024) {
615 if (matches > 4 || firstmatch ||
616 (secondary_matches >= 10 &&
617 p->
buf_size / secondary_matches < 24000))
618 // not max to avoid dv in mov to match
621 }
622 return 0;
623 }
624
625 #if CONFIG_DV_DEMUXER
635 .extensions = "dv,dif",
636 };
637 #endif