]> git.sesse.net Git - ffmpeg/blob - libavformat/bink.c
Merge commit '6adf4290ebcf65ac8243d74f34ba0a508f561633'
[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/channel_layout.h"
32 #include "libavutil/intreadwrite.h"
33 #include "avformat.h"
34 #include "internal.h"
35
36 enum BinkAudFlags {
37     BINK_AUD_16BITS = 0x4000, ///< prefer 16-bit output
38     BINK_AUD_STEREO = 0x2000,
39     BINK_AUD_USEDCT = 0x1000,
40 };
41
42 #define BINK_EXTRADATA_SIZE     1
43 #define BINK_MAX_AUDIO_TRACKS   256
44 #define BINK_MAX_WIDTH          7680
45 #define BINK_MAX_HEIGHT         4800
46
47 typedef struct {
48     uint32_t file_size;
49
50     uint32_t num_audio_tracks;
51     int current_track;      ///< audio track to return in next packet
52     int64_t video_pts;
53     int64_t audio_pts[BINK_MAX_AUDIO_TRACKS];
54
55     uint32_t remain_packet_size;
56 } BinkDemuxContext;
57
58 static int probe(AVProbeData *p)
59 {
60     const uint8_t *b = p->buf;
61
62     if (((b[0] == 'B' && b[1] == 'I' && b[2] == 'K' &&
63          (b[3] == 'b' || b[3] == 'f' || b[3] == 'g' || b[3] == 'h' || b[3] == 'i')) ||
64          (b[0] == 'K' && b[1] == 'B' && b[2] == '2' && /* Bink 2 */
65          (b[3] == 'a' || b[3] == 'd' || b[3] == 'f' || b[3] == 'g'))) &&
66         AV_RL32(b+8) > 0 &&  // num_frames
67         AV_RL32(b+20) > 0 && AV_RL32(b+20) <= BINK_MAX_WIDTH &&
68         AV_RL32(b+24) > 0 && AV_RL32(b+24) <= BINK_MAX_HEIGHT &&
69         AV_RL32(b+28) > 0 && AV_RL32(b+32) > 0)  // fps num,den
70         return AVPROBE_SCORE_MAX;
71     return 0;
72 }
73
74 static int read_header(AVFormatContext *s)
75 {
76     BinkDemuxContext *bink = s->priv_data;
77     AVIOContext *pb = s->pb;
78     uint32_t fps_num, fps_den;
79     AVStream *vst, *ast;
80     unsigned int i;
81     uint32_t pos, next_pos;
82     uint16_t flags;
83     int keyframe;
84     int ret;
85
86     vst = avformat_new_stream(s, NULL);
87     if (!vst)
88         return AVERROR(ENOMEM);
89
90     vst->codec->codec_tag = avio_rl32(pb);
91
92     bink->file_size = avio_rl32(pb) + 8;
93     vst->duration   = avio_rl32(pb);
94
95     if (vst->duration > 1000000) {
96         av_log(s, AV_LOG_ERROR, "invalid header: more than 1000000 frames\n");
97         return AVERROR(EIO);
98     }
99
100     if (avio_rl32(pb) > bink->file_size) {
101         av_log(s, AV_LOG_ERROR,
102                "invalid header: largest frame size greater than file size\n");
103         return AVERROR(EIO);
104     }
105
106     avio_skip(pb, 4);
107
108     vst->codec->width  = avio_rl32(pb);
109     vst->codec->height = avio_rl32(pb);
110
111     fps_num = avio_rl32(pb);
112     fps_den = avio_rl32(pb);
113     if (fps_num == 0 || fps_den == 0) {
114         av_log(s, AV_LOG_ERROR, "invalid header: invalid fps (%d/%d)\n", fps_num, fps_den);
115         return AVERROR(EIO);
116     }
117     avpriv_set_pts_info(vst, 64, fps_den, fps_num);
118     vst->avg_frame_rate = av_inv_q(vst->time_base);
119
120     vst->codec->codec_type = AVMEDIA_TYPE_VIDEO;
121     vst->codec->codec_id   = AV_CODEC_ID_BINKVIDEO;
122
123     if ((vst->codec->codec_tag & 0xFFFFFF) == MKTAG('K', 'B', '2', 0)) {
124         av_log(s, AV_LOG_WARNING, "Bink 2 video is not implemented\n");
125         vst->codec->codec_id = AV_CODEC_ID_NONE;
126     }
127
128     if (ff_get_extradata(vst->codec, pb, 4) < 0)
129         return AVERROR(ENOMEM);
130
131     bink->num_audio_tracks = avio_rl32(pb);
132
133     if (bink->num_audio_tracks > BINK_MAX_AUDIO_TRACKS) {
134         av_log(s, AV_LOG_ERROR,
135                "invalid header: more than "AV_STRINGIFY(BINK_MAX_AUDIO_TRACKS)" audio tracks (%d)\n",
136                bink->num_audio_tracks);
137         return AVERROR(EIO);
138     }
139
140     if (bink->num_audio_tracks) {
141         avio_skip(pb, 4 * bink->num_audio_tracks);
142
143         for (i = 0; i < bink->num_audio_tracks; i++) {
144             ast = avformat_new_stream(s, NULL);
145             if (!ast)
146                 return AVERROR(ENOMEM);
147             ast->codec->codec_type  = AVMEDIA_TYPE_AUDIO;
148             ast->codec->codec_tag   = 0;
149             ast->codec->sample_rate = avio_rl16(pb);
150             avpriv_set_pts_info(ast, 64, 1, ast->codec->sample_rate);
151             flags = avio_rl16(pb);
152             ast->codec->codec_id = flags & BINK_AUD_USEDCT ?
153                                    AV_CODEC_ID_BINKAUDIO_DCT : AV_CODEC_ID_BINKAUDIO_RDFT;
154             if (flags & BINK_AUD_STEREO) {
155                 ast->codec->channels       = 2;
156                 ast->codec->channel_layout = AV_CH_LAYOUT_STEREO;
157             } else {
158                 ast->codec->channels       = 1;
159                 ast->codec->channel_layout = AV_CH_LAYOUT_MONO;
160             }
161             if (ff_alloc_extradata(ast->codec, 4))
162                 return AVERROR(ENOMEM);
163             AV_WL32(ast->codec->extradata, vst->codec->codec_tag);
164         }
165
166         for (i = 0; i < bink->num_audio_tracks; i++)
167             s->streams[i + 1]->id = avio_rl32(pb);
168     }
169
170     /* frame index table */
171     next_pos = avio_rl32(pb);
172     for (i = 0; i < vst->duration; i++) {
173         pos = next_pos;
174         if (i == vst->duration - 1) {
175             next_pos = bink->file_size;
176             keyframe = 0;
177         } else {
178             next_pos = avio_rl32(pb);
179             keyframe = pos & 1;
180         }
181         pos &= ~1;
182         next_pos &= ~1;
183
184         if (next_pos <= pos) {
185             av_log(s, AV_LOG_ERROR, "invalid frame index table\n");
186             return AVERROR(EIO);
187         }
188         if ((ret = av_add_index_entry(vst, pos, i, next_pos - pos, 0,
189                                       keyframe ? AVINDEX_KEYFRAME : 0)) < 0)
190             return ret;
191     }
192
193     avio_seek(pb, vst->index_entries[0].pos, SEEK_SET);
194
195     bink->current_track = -1;
196     return 0;
197 }
198
199 static int read_packet(AVFormatContext *s, AVPacket *pkt)
200 {
201     BinkDemuxContext *bink = s->priv_data;
202     AVIOContext *pb = s->pb;
203     int ret;
204
205     if (bink->current_track < 0) {
206         int index_entry;
207         AVStream *st = s->streams[0]; // stream 0 is video stream with index
208
209         if (bink->video_pts >= st->duration)
210             return AVERROR_EOF;
211
212         index_entry = av_index_search_timestamp(st, bink->video_pts,
213                                                 AVSEEK_FLAG_ANY);
214         if (index_entry < 0) {
215             av_log(s, AV_LOG_ERROR,
216                    "could not find index entry for frame %"PRId64"\n",
217                    bink->video_pts);
218             return AVERROR(EIO);
219         }
220
221         bink->remain_packet_size = st->index_entries[index_entry].size;
222         bink->current_track = 0;
223     }
224
225     while (bink->current_track < bink->num_audio_tracks) {
226         uint32_t audio_size = avio_rl32(pb);
227         if (audio_size > bink->remain_packet_size - 4) {
228             av_log(s, AV_LOG_ERROR,
229                    "frame %"PRId64": audio size in header (%u) > size of packet left (%u)\n",
230                    bink->video_pts, audio_size, bink->remain_packet_size);
231             return AVERROR(EIO);
232         }
233         bink->remain_packet_size -= 4 + audio_size;
234         bink->current_track++;
235         if (audio_size >= 4) {
236             /* get one audio packet per track */
237             if ((ret = av_get_packet(pb, pkt, audio_size)) < 0)
238                 return ret;
239             pkt->stream_index = bink->current_track;
240             pkt->pts = bink->audio_pts[bink->current_track - 1];
241
242             /* Each audio packet reports the number of decompressed samples
243                (in bytes). We use this value to calcuate the audio PTS */
244             if (pkt->size >= 4)
245                 bink->audio_pts[bink->current_track -1] +=
246                     AV_RL32(pkt->data) / (2 * s->streams[bink->current_track]->codec->channels);
247             return 0;
248         } else {
249             avio_skip(pb, audio_size);
250         }
251     }
252
253     /* get video packet */
254     if ((ret = av_get_packet(pb, pkt, bink->remain_packet_size)) < 0)
255         return ret;
256     pkt->stream_index = 0;
257     pkt->pts = bink->video_pts++;
258     pkt->flags |= AV_PKT_FLAG_KEY;
259
260     /* -1 instructs the next call to read_packet() to read the next frame */
261     bink->current_track = -1;
262
263     return 0;
264 }
265
266 static int read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
267 {
268     BinkDemuxContext *bink = s->priv_data;
269     AVStream *vst = s->streams[0];
270
271     if (!s->pb->seekable)
272         return -1;
273
274     /* seek to the first frame */
275     if (avio_seek(s->pb, vst->index_entries[0].pos, SEEK_SET) < 0)
276         return -1;
277
278     bink->video_pts = 0;
279     memset(bink->audio_pts, 0, sizeof(bink->audio_pts));
280     bink->current_track = -1;
281     return 0;
282 }
283
284 AVInputFormat ff_bink_demuxer = {
285     .name           = "bink",
286     .long_name      = NULL_IF_CONFIG_SMALL("Bink"),
287     .priv_data_size = sizeof(BinkDemuxContext),
288     .read_probe     = probe,
289     .read_header    = read_header,
290     .read_packet    = read_packet,
291     .read_seek      = read_seek,
292     .flags          = AVFMT_SHOW_IDS,
293 };