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