Mercurial > libavformat.hg
annotate bink.c @ 5700:982edb9135ca libavformat
Cosmetics: reindent
author | mstorsjo |
---|---|
date | Tue, 23 Feb 2010 11:05:36 +0000 |
parents | 2ace2ee84929 |
children | 8a605bb5cee4 |
rev | line source |
---|---|
5614 | 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 libavformat/bink.c | |
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 | |
34 enum BinkAudFlags { | |
35 BINK_AUD_16BITS = 0x4000, ///< prefer 16-bit output | |
36 BINK_AUD_STEREO = 0x2000, | |
37 BINK_AUD_USEDCT = 0x1000, | |
38 }; | |
39 | |
40 #define BINK_EXTRADATA_SIZE 1 | |
41 #define BINK_MAX_AUDIO_TRACKS 256 | |
42 #define BINK_MAX_WIDTH 7680 | |
43 #define BINK_MAX_HEIGHT 4800 | |
44 | |
45 typedef struct { | |
46 uint32_t file_size; | |
47 uint32_t total_frames; | |
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, AVFormatParameters *ap) | |
72 { | |
73 BinkDemuxContext *bink = s->priv_data; | |
74 ByteIOContext *pb = s->pb; | |
75 uint32_t fps_num, fps_den; | |
76 AVStream *vst, *ast; | |
77 unsigned int i; | |
78 uint32_t pos, prev_pos; | |
79 uint16_t flags; | |
80 int keyframe; | |
81 | |
82 vst = av_new_stream(s, 0); | |
83 if (!vst) | |
84 return AVERROR(ENOMEM); | |
85 | |
86 vst->codec->codec_tag = get_le32(pb); | |
87 | |
88 bink->file_size = get_le32(pb) + 8; | |
89 bink->total_frames = get_le32(pb); | |
90 | |
91 if (bink->total_frames > 1000000) { | |
92 av_log(s, AV_LOG_ERROR, "invalid header: more than 1000000 frames\n"); | |
93 return AVERROR(EIO); | |
94 } | |
95 | |
96 if (get_le32(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 url_fskip(pb, 4); | |
103 | |
104 vst->codec->width = get_le32(pb); | |
105 vst->codec->height = get_le32(pb); | |
106 | |
107 fps_num = get_le32(pb); | |
108 fps_den = get_le32(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 av_set_pts_info(vst, 64, fps_den, fps_num); | |
114 | |
115 vst->codec->codec_type = CODEC_TYPE_VIDEO; | |
5616 | 116 vst->codec->codec_id = CODEC_ID_BINKVIDEO; |
5698 | 117 vst->codec->extradata = av_mallocz(4 + FF_INPUT_BUFFER_PADDING_SIZE); |
118 vst->codec->extradata_size = 4; | |
119 get_buffer(pb, vst->codec->extradata, 4); | |
120 | |
5614 | 121 bink->num_audio_tracks = get_le32(pb); |
122 | |
123 if (bink->num_audio_tracks > BINK_MAX_AUDIO_TRACKS) { | |
124 av_log(s, AV_LOG_ERROR, | |
125 "invalid header: more than "AV_STRINGIFY(BINK_MAX_AUDIO_TRACKS)" audio tracks (%d)\n", | |
126 bink->num_audio_tracks); | |
127 return AVERROR(EIO); | |
128 } | |
129 | |
130 if (bink->num_audio_tracks) { | |
131 url_fskip(pb, 4 * bink->num_audio_tracks); | |
132 | |
133 for (i = 0; i < bink->num_audio_tracks; i++) { | |
134 ast = av_new_stream(s, 1); | |
135 if (!ast) | |
136 return AVERROR(ENOMEM); | |
137 ast->codec->codec_type = CODEC_TYPE_AUDIO; | |
138 ast->codec->codec_tag = 0; | |
139 ast->codec->sample_rate = get_le16(pb); | |
140 av_set_pts_info(ast, 64, 1, ast->codec->sample_rate); | |
141 flags = get_le16(pb); | |
142 ast->codec->codec_id = flags & BINK_AUD_USEDCT ? | |
143 CODEC_ID_BINKAUDIO_DCT : CODEC_ID_BINKAUDIO_RDFT; | |
144 ast->codec->channels = flags & BINK_AUD_STEREO ? 2 : 1; | |
145 } | |
146 | |
147 url_fskip(pb, 4 * bink->num_audio_tracks); | |
148 } | |
149 | |
150 /* frame index table */ | |
151 pos = get_le32(pb) & ~1; | |
152 for (i = 0; i < bink->total_frames; i++) { | |
153 prev_pos = pos; | |
154 if (i == bink->total_frames - 1) { | |
155 pos = bink->file_size; | |
156 keyframe = 0; | |
157 } else { | |
158 pos = get_le32(pb); | |
159 keyframe = pos & 1; | |
160 pos &= ~1; | |
161 } | |
162 if (pos <= prev_pos) { | |
163 av_log(s, AV_LOG_ERROR, "invalid frame index table\n"); | |
164 return AVERROR(EIO); | |
165 } | |
166 av_add_index_entry(vst, pos, i, pos - prev_pos, 0, | |
167 keyframe ? AVINDEX_KEYFRAME : 0); | |
168 } | |
169 | |
170 url_fskip(pb, 4); | |
171 | |
172 bink->current_track = -1; | |
173 return 0; | |
174 } | |
175 | |
176 static int read_packet(AVFormatContext *s, AVPacket *pkt) | |
177 { | |
178 BinkDemuxContext *bink = s->priv_data; | |
179 ByteIOContext *pb = s->pb; | |
180 int ret; | |
181 | |
182 if (bink->current_track < 0) { | |
183 int index_entry; | |
184 AVStream *st = s->streams[0]; // stream 0 is video stream with index | |
185 | |
186 if (bink->video_pts >= bink->total_frames) | |
187 return AVERROR(EIO); | |
188 | |
189 index_entry = av_index_search_timestamp(st, bink->video_pts, | |
190 AVSEEK_FLAG_ANY); | |
191 if (index_entry < 0) { | |
192 av_log(s, AV_LOG_ERROR, | |
193 "could not find index entry for frame %"PRId64"\n", | |
194 bink->video_pts); | |
195 return AVERROR(EIO); | |
196 } | |
197 | |
198 bink->remain_packet_size = st->index_entries[index_entry].size; | |
199 bink->current_track = 0; | |
200 } | |
201 | |
5675
bbbedc311b93
Make Bink demuxer skip all zero audio tracks, not only the first one
kostya
parents:
5616
diff
changeset
|
202 while (bink->current_track < bink->num_audio_tracks) { |
5614 | 203 uint32_t audio_size = get_le32(pb); |
204 if (audio_size > bink->remain_packet_size - 4) { | |
205 av_log(s, AV_LOG_ERROR, | |
206 "frame %"PRId64": audio size in header (%u) > size of packet left (%u)\n", | |
207 bink->video_pts, audio_size, bink->remain_packet_size); | |
208 return AVERROR(EIO); | |
209 } | |
210 bink->remain_packet_size -= 4 + audio_size; | |
211 bink->current_track++; | |
212 if (audio_size > 0) { | |
213 /* Each audio packet reports the number of decompressed samples | |
214 (in bytes). We use this value to calcuate the audio PTS */ | |
215 int reported_size = get_le32(pb) / (2 * s->streams[bink->current_track]->codec->channels); | |
216 url_fseek(pb, -4, SEEK_CUR); | |
217 | |
218 /* get one audio packet per track */ | |
219 if ((ret = av_get_packet(pb, pkt, audio_size)) | |
220 != audio_size) | |
221 return ret; | |
222 pkt->stream_index = bink->current_track; | |
5699 | 223 pkt->pts = bink->audio_pts[bink->current_track - 1]; |
224 bink->audio_pts[bink->current_track -1] += reported_size; | |
5614 | 225 return 0; |
226 } | |
227 } | |
228 | |
229 /* get video packet */ | |
230 if ((ret = av_get_packet(pb, pkt, bink->remain_packet_size)) | |
231 != bink->remain_packet_size) | |
232 return ret; | |
233 pkt->stream_index = 0; | |
234 pkt->pts = bink->video_pts++; | |
235 pkt->flags |= PKT_FLAG_KEY; | |
236 | |
237 /* -1 instructs the next call to read_packet() to read the next frame */ | |
238 bink->current_track = -1; | |
239 | |
240 return 0; | |
241 } | |
242 | |
243 AVInputFormat bink_demuxer = { | |
244 "bink", | |
245 NULL_IF_CONFIG_SMALL("Bink"), | |
246 sizeof(BinkDemuxContext), | |
247 probe, | |
248 read_header, | |
249 read_packet, | |
250 }; |