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