]> git.sesse.net Git - ffmpeg/blob - libavformat/bink.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavformat / bink.c
1 /*
2  * Bink demuxer
3  * Copyright (c) 2008-2010 Peter Ross (pross@xvid.org)
4  * Copyright (c) 2009 Daniel Verkamp (daniel@drv.nu)
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 /**
24  * @file
25  * Bink demuxer
26  *
27  * Technical details here:
28  *  http://wiki.multimedia.cx/index.php?title=Bink_Container
29  */
30
31 #include "libavutil/intreadwrite.h"
32 #include "avformat.h"
33 #include "internal.h"
34
35 enum BinkAudFlags {
36     BINK_AUD_16BITS = 0x4000, ///< prefer 16-bit output
37     BINK_AUD_STEREO = 0x2000,
38     BINK_AUD_USEDCT = 0x1000,
39 };
40
41 #define BINK_EXTRADATA_SIZE     1
42 #define BINK_MAX_AUDIO_TRACKS   256
43 #define BINK_MAX_WIDTH          7680
44 #define BINK_MAX_HEIGHT         4800
45
46 typedef struct {
47     uint32_t file_size;
48
49     uint32_t num_audio_tracks;
50     int current_track;      ///< audio track to return in next packet
51     int64_t video_pts;
52     int64_t audio_pts[BINK_MAX_AUDIO_TRACKS];
53
54     uint32_t remain_packet_size;
55 } BinkDemuxContext;
56
57 static int probe(AVProbeData *p)
58 {
59     const uint8_t *b = p->buf;
60
61     if ( b[0] == 'B' && b[1] == 'I' && b[2] == 'K' &&
62         (b[3] == 'b' || b[3] == 'f' || b[3] == 'g' || b[3] == 'h' || b[3] == 'i') &&
63         AV_RL32(b+8) > 0 &&  // num_frames
64         AV_RL32(b+20) > 0 && AV_RL32(b+20) <= BINK_MAX_WIDTH &&
65         AV_RL32(b+24) > 0 && AV_RL32(b+24) <= BINK_MAX_HEIGHT &&
66         AV_RL32(b+28) > 0 && AV_RL32(b+32) > 0)  // fps num,den
67         return AVPROBE_SCORE_MAX;
68     return 0;
69 }
70
71 static int read_header(AVFormatContext *s)
72 {
73     BinkDemuxContext *bink = s->priv_data;
74     AVIOContext *pb = s->pb;
75     uint32_t fps_num, fps_den;
76     AVStream *vst, *ast;
77     unsigned int i;
78     uint32_t pos, next_pos;
79     uint16_t flags;
80     int keyframe;
81
82     vst = avformat_new_stream(s, NULL);
83     if (!vst)
84         return AVERROR(ENOMEM);
85
86     vst->codec->codec_tag = avio_rl32(pb);
87
88     bink->file_size = avio_rl32(pb) + 8;
89     vst->duration   = avio_rl32(pb);
90
91     if (vst->duration > 1000000) {
92         av_log(s, AV_LOG_ERROR, "invalid header: more than 1000000 frames\n");
93         return AVERROR(EIO);
94     }
95
96     if (avio_rl32(pb) > bink->file_size) {
97         av_log(s, AV_LOG_ERROR,
98                "invalid header: largest frame size greater than file size\n");
99         return AVERROR(EIO);
100     }
101
102     avio_skip(pb, 4);
103
104     vst->codec->width  = avio_rl32(pb);
105     vst->codec->height = avio_rl32(pb);
106
107     fps_num = avio_rl32(pb);
108     fps_den = avio_rl32(pb);
109     if (fps_num == 0 || fps_den == 0) {
110         av_log(s, AV_LOG_ERROR, "invalid header: invalid fps (%d/%d)\n", fps_num, fps_den);
111         return AVERROR(EIO);
112     }
113     avpriv_set_pts_info(vst, 64, fps_den, fps_num);
114
115     vst->codec->codec_type = AVMEDIA_TYPE_VIDEO;
116     vst->codec->codec_id   = CODEC_ID_BINKVIDEO;
117     vst->codec->extradata  = av_mallocz(4 + FF_INPUT_BUFFER_PADDING_SIZE);
118     if (!vst->codec->extradata)
119         return AVERROR(ENOMEM);
120     vst->codec->extradata_size = 4;
121     avio_read(pb, vst->codec->extradata, 4);
122
123     bink->num_audio_tracks = avio_rl32(pb);
124
125     if (bink->num_audio_tracks > BINK_MAX_AUDIO_TRACKS) {
126         av_log(s, AV_LOG_ERROR,
127                "invalid header: more than "AV_STRINGIFY(BINK_MAX_AUDIO_TRACKS)" audio tracks (%d)\n",
128                bink->num_audio_tracks);
129         return AVERROR(EIO);
130     }
131
132     if (bink->num_audio_tracks) {
133         avio_skip(pb, 4 * bink->num_audio_tracks);
134
135         for (i = 0; i < bink->num_audio_tracks; i++) {
136             ast = avformat_new_stream(s, NULL);
137             if (!ast)
138                 return AVERROR(ENOMEM);
139             ast->codec->codec_type  = AVMEDIA_TYPE_AUDIO;
140             ast->codec->codec_tag   = 0;
141             ast->codec->sample_rate = avio_rl16(pb);
142             avpriv_set_pts_info(ast, 64, 1, ast->codec->sample_rate);
143             flags = avio_rl16(pb);
144             ast->codec->codec_id = flags & BINK_AUD_USEDCT ?
145                                    CODEC_ID_BINKAUDIO_DCT : CODEC_ID_BINKAUDIO_RDFT;
146             ast->codec->channels = flags & BINK_AUD_STEREO ? 2 : 1;
147             ast->codec->extradata = av_mallocz(4 + FF_INPUT_BUFFER_PADDING_SIZE);
148             if (!ast->codec->extradata)
149                 return AVERROR(ENOMEM);
150             ast->codec->extradata_size = 4;
151             AV_WL32(ast->codec->extradata, vst->codec->codec_tag);
152         }
153
154         for (i = 0; i < bink->num_audio_tracks; i++)
155             s->streams[i + 1]->id = avio_rl32(pb);
156     }
157
158     /* frame index table */
159     next_pos = avio_rl32(pb);
160     for (i = 0; i < vst->duration; i++) {
161         pos = next_pos;
162         if (i == vst->duration - 1) {
163             next_pos = bink->file_size;
164             keyframe = 0;
165         } else {
166             next_pos = avio_rl32(pb);
167             keyframe = pos & 1;
168         }
169         pos &= ~1;
170         next_pos &= ~1;
171
172         if (next_pos <= pos) {
173             av_log(s, AV_LOG_ERROR, "invalid frame index table\n");
174             return AVERROR(EIO);
175         }
176         av_add_index_entry(vst, pos, i, next_pos - pos, 0,
177                            keyframe ? AVINDEX_KEYFRAME : 0);
178     }
179
180     avio_skip(pb, 4);
181
182     bink->current_track = -1;
183     return 0;
184 }
185
186 static int read_packet(AVFormatContext *s, AVPacket *pkt)
187 {
188     BinkDemuxContext *bink = s->priv_data;
189     AVIOContext *pb = s->pb;
190     int ret;
191
192     if (bink->current_track < 0) {
193         int index_entry;
194         AVStream *st = s->streams[0]; // stream 0 is video stream with index
195
196         if (bink->video_pts >= st->duration)
197             return AVERROR(EIO);
198
199         index_entry = av_index_search_timestamp(st, bink->video_pts,
200                                                 AVSEEK_FLAG_ANY);
201         if (index_entry < 0) {
202             av_log(s, AV_LOG_ERROR,
203                    "could not find index entry for frame %"PRId64"\n",
204                    bink->video_pts);
205             return AVERROR(EIO);
206         }
207
208         bink->remain_packet_size = st->index_entries[index_entry].size;
209         bink->current_track = 0;
210     }
211
212     while (bink->current_track < bink->num_audio_tracks) {
213         uint32_t audio_size = avio_rl32(pb);
214         if (audio_size > bink->remain_packet_size - 4) {
215             av_log(s, AV_LOG_ERROR,
216                    "frame %"PRId64": audio size in header (%u) > size of packet left (%u)\n",
217                    bink->video_pts, audio_size, bink->remain_packet_size);
218             return AVERROR(EIO);
219         }
220         bink->remain_packet_size -= 4 + audio_size;
221         bink->current_track++;
222         if (audio_size >= 4) {
223             /* get one audio packet per track */
224             if ((ret = av_get_packet(pb, pkt, audio_size)) < 0)
225                 return ret;
226             pkt->stream_index = bink->current_track;
227             pkt->pts = bink->audio_pts[bink->current_track - 1];
228
229             /* Each audio packet reports the number of decompressed samples
230                (in bytes). We use this value to calcuate the audio PTS */
231             if (pkt->size >= 4)
232                 bink->audio_pts[bink->current_track -1] +=
233                     AV_RL32(pkt->data) / (2 * s->streams[bink->current_track]->codec->channels);
234             return 0;
235         } else {
236             avio_skip(pb, audio_size);
237         }
238     }
239
240     /* get video packet */
241     if ((ret = av_get_packet(pb, pkt, bink->remain_packet_size)) < 0)
242         return ret;
243     pkt->stream_index = 0;
244     pkt->pts = bink->video_pts++;
245     pkt->flags |= AV_PKT_FLAG_KEY;
246
247     /* -1 instructs the next call to read_packet() to read the next frame */
248     bink->current_track = -1;
249
250     return 0;
251 }
252
253 static int read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
254 {
255     BinkDemuxContext *bink = s->priv_data;
256     AVStream *vst = s->streams[0];
257
258     if (!s->pb->seekable)
259         return -1;
260
261     /* seek to the first frame */
262     if (avio_seek(s->pb, vst->index_entries[0].pos, SEEK_SET) < 0)
263         return -1;
264
265     bink->video_pts = 0;
266     memset(bink->audio_pts, 0, sizeof(bink->audio_pts));
267     bink->current_track = -1;
268     return 0;
269 }
270
271 AVInputFormat ff_bink_demuxer = {
272     .name           = "bink",
273     .long_name      = NULL_IF_CONFIG_SMALL("Bink"),
274     .priv_data_size = sizeof(BinkDemuxContext),
275     .read_probe     = probe,
276     .read_header    = read_header,
277     .read_packet    = read_packet,
278     .read_seek      = read_seek,
279 };