FFmpeg
bink.c
Go to the documentation of this file.
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 <inttypes.h>
32 
34 #include "libavutil/intreadwrite.h"
35 #include "avformat.h"
36 #include "internal.h"
37 
39  BINK_AUD_16BITS = 0x4000, ///< prefer 16-bit output
40  BINK_AUD_STEREO = 0x2000,
41  BINK_AUD_USEDCT = 0x1000,
42 };
43 
44 #define BINK_EXTRADATA_SIZE 1
45 #define BINK_MAX_AUDIO_TRACKS 256
46 #define BINK_MAX_WIDTH 7680
47 #define BINK_MAX_HEIGHT 4800
48 #define SMUSH_BLOCK_SIZE 512
49 
50 typedef struct BinkDemuxContext {
51  uint32_t file_size;
52 
53  uint32_t num_audio_tracks;
54  int current_track; ///< audio track to return in next packet
55  int64_t video_pts;
57 
59  int flags;
62 
63 static int probe(const AVProbeData *p)
64 {
65  const uint8_t *b = p->buf;
66  int smush = AV_RN32(p->buf) == AV_RN32("SMUS");
67 
68  do {
69  if (((b[0] == 'B' && b[1] == 'I' && b[2] == 'K' && /* Bink 1 */
70  (b[3] == 'b' || b[3] == 'f' || b[3] == 'g' || b[3] == 'h' || b[3] == 'i' ||
71  b[3] == 'k')) ||
72  (b[0] == 'K' && b[1] == 'B' && b[2] == '2' && /* Bink 2 */
73  (b[3] == 'a' || b[3] == 'd' || b[3] == 'f' || b[3] == 'g' || b[3] == 'h' ||
74  b[3] == 'i' || b[3] == 'j' || b[3] == 'k'))) &&
75  AV_RL32(b+8) > 0 && // num_frames
76  AV_RL32(b+20) > 0 && AV_RL32(b+20) <= BINK_MAX_WIDTH &&
77  AV_RL32(b+24) > 0 && AV_RL32(b+24) <= BINK_MAX_HEIGHT &&
78  AV_RL32(b+28) > 0 && AV_RL32(b+32) > 0) // fps num,den
79  return AVPROBE_SCORE_MAX;
81  } while (smush && b < p->buf + p->buf_size - 32);
82  return 0;
83 }
84 
86 {
87  BinkDemuxContext *bink = s->priv_data;
88  AVIOContext *pb = s->pb;
89  uint32_t fps_num, fps_den;
90  AVStream *const vst = avformat_new_stream(s, NULL);
91  FFStream *const vsti = ffstream(vst);
92  unsigned int i;
93  uint32_t pos, next_pos;
94  uint16_t flags;
95  int next_keyframe = 1;
96  int keyframe;
97  int ret;
98  uint32_t signature;
99  uint8_t revision;
100 
101  if (!vst)
102  return AVERROR(ENOMEM);
103 
104  vst->codecpar->codec_tag = avio_rl32(pb);
105  if (vst->codecpar->codec_tag == AV_RL32("SMUS")) {
106  do {
107  bink->smush_size += SMUSH_BLOCK_SIZE;
108  avio_skip(pb, SMUSH_BLOCK_SIZE - 4);
109  vst->codecpar->codec_tag = avio_rl32(pb);
110  } while (!avio_feof(pb) && (vst->codecpar->codec_tag & 0xFFFFFF) != AV_RL32("BIK"));
111  if (avio_feof(pb)) {
112  av_log(s, AV_LOG_ERROR, "invalid SMUSH header: BIK not found\n");
113  return AVERROR_INVALIDDATA;
114  }
115  }
116 
117  bink->file_size = avio_rl32(pb) + 8;
118  vst->duration = avio_rl32(pb);
119 
120  if (vst->duration > 1000000) {
121  av_log(s, AV_LOG_ERROR, "invalid header: more than 1000000 frames\n");
122  return AVERROR(EIO);
123  }
124 
125  if (avio_rl32(pb) > bink->file_size) {
127  "invalid header: largest frame size greater than file size\n");
128  return AVERROR(EIO);
129  }
130 
131  avio_skip(pb, 4);
132 
133  vst->codecpar->width = avio_rl32(pb);
134  vst->codecpar->height = avio_rl32(pb);
135 
136  fps_num = avio_rl32(pb);
137  fps_den = avio_rl32(pb);
138  if (fps_num == 0 || fps_den == 0) {
140  "invalid header: invalid fps (%"PRIu32"/%"PRIu32")\n",
141  fps_num, fps_den);
142  return AVERROR(EIO);
143  }
144  avpriv_set_pts_info(vst, 64, fps_den, fps_num);
145  vst->avg_frame_rate = av_inv_q(vst->time_base);
146 
149 
150  if ((vst->codecpar->codec_tag & 0xFFFFFF) == MKTAG('K', 'B', '2', 0)) {
151  av_log(s, AV_LOG_WARNING, "Bink 2 video is not implemented\n");
153  }
154 
155  if ((ret = ff_get_extradata(s, vst->codecpar, pb, 4)) < 0)
156  return ret;
157 
158  bink->num_audio_tracks = avio_rl32(pb);
159 
162  "invalid header: more than "AV_STRINGIFY(BINK_MAX_AUDIO_TRACKS)" audio tracks (%"PRIu32")\n",
163  bink->num_audio_tracks);
164  return AVERROR(EIO);
165  }
166 
167  signature = (vst->codecpar->codec_tag & 0xFFFFFF);
168  revision = ((vst->codecpar->codec_tag >> 24) % 0xFF);
169 
170  if ((signature == AV_RL32("BIK") && (revision == 'k')) ||
171  (signature == AV_RL32("KB2") && (revision == 'i' || revision == 'j' || revision == 'k')))
172  avio_skip(pb, 4); /* unknown new field */
173 
174  if (bink->num_audio_tracks) {
175  avio_skip(pb, 4 * bink->num_audio_tracks); /* max decoded size */
176 
177  for (i = 0; i < bink->num_audio_tracks; i++) {
178  AVStream *const ast = avformat_new_stream(s, NULL);
179  if (!ast)
180  return AVERROR(ENOMEM);
182  ast->codecpar->codec_tag = 0;
183  ast->codecpar->sample_rate = avio_rl16(pb);
184  avpriv_set_pts_info(ast, 64, 1, ast->codecpar->sample_rate);
185  flags = avio_rl16(pb);
188  if (flags & BINK_AUD_STEREO) {
189  ast->codecpar->channels = 2;
191  } else {
192  ast->codecpar->channels = 1;
194  }
195  if ((ret = ff_alloc_extradata(ast->codecpar, 4)) < 0)
196  return ret;
198  }
199 
200  for (i = 0; i < bink->num_audio_tracks; i++)
201  s->streams[i + 1]->id = avio_rl32(pb);
202  }
203 
204  /* frame index table */
205  next_pos = avio_rl32(pb);
206  for (i = 0; i < vst->duration; i++) {
207  pos = next_pos;
208  keyframe = next_keyframe;
209  if (i == vst->duration - 1) {
210  next_pos = bink->file_size;
211  next_keyframe = 0;
212  } else {
213  next_pos = avio_rl32(pb);
214  next_keyframe = next_pos & 1;
215  }
216  pos &= ~1;
217  next_pos &= ~1;
218 
219  if (next_pos <= pos) {
220  av_log(s, AV_LOG_ERROR, "invalid frame index table\n");
221  return AVERROR(EIO);
222  }
223  if ((ret = av_add_index_entry(vst, pos, i, next_pos - pos, 0,
224  keyframe ? AVINDEX_KEYFRAME : 0)) < 0)
225  return ret;
226  }
227 
228  if (vsti->index_entries)
229  avio_seek(pb, vsti->index_entries[0].pos + bink->smush_size, SEEK_SET);
230  else
231  avio_skip(pb, 4);
232 
233  bink->current_track = -1;
234  return 0;
235 }
236 
238 {
239  BinkDemuxContext *bink = s->priv_data;
240  AVIOContext *pb = s->pb;
241  int ret;
242 
243  if (bink->current_track < 0) {
244  int index_entry;
245  AVStream *st = s->streams[0]; // stream 0 is video stream with index
246  FFStream *const sti = ffstream(st);
247 
248  if (bink->video_pts >= st->duration)
249  return AVERROR_EOF;
250 
251  index_entry = av_index_search_timestamp(st, bink->video_pts,
253  if (index_entry < 0) {
255  "could not find index entry for frame %"PRId64"\n",
256  bink->video_pts);
257  return AVERROR(EIO);
258  }
259 
260  bink->remain_packet_size = sti->index_entries[index_entry].size;
261  bink->flags = sti->index_entries[index_entry].flags;
262  bink->current_track = 0;
263  }
264 
265  while (bink->current_track < bink->num_audio_tracks) {
266  uint32_t audio_size = avio_rl32(pb);
267  if (audio_size > bink->remain_packet_size - 4) {
269  "frame %"PRId64": audio size in header (%"PRIu32") > size of packet left (%"PRIu32")\n",
270  bink->video_pts, audio_size, bink->remain_packet_size);
271  return AVERROR(EIO);
272  }
273  bink->remain_packet_size -= 4 + audio_size;
274  bink->current_track++;
275  if (audio_size >= 4) {
276  /* get one audio packet per track */
277  if ((ret = av_get_packet(pb, pkt, audio_size)) < 0)
278  return ret;
279  pkt->stream_index = bink->current_track;
280  pkt->pts = bink->audio_pts[bink->current_track - 1];
281 
282  /* Each audio packet reports the number of decompressed samples
283  (in bytes). We use this value to calculate the audio PTS */
284  if (pkt->size >= 4)
285  bink->audio_pts[bink->current_track -1] +=
286  AV_RL32(pkt->data) / (2 * s->streams[bink->current_track]->codecpar->channels);
287  return 0;
288  } else {
289  avio_skip(pb, audio_size);
290  }
291  }
292 
293  /* get video packet */
294  if ((ret = av_get_packet(pb, pkt, bink->remain_packet_size)) < 0)
295  return ret;
296  pkt->stream_index = 0;
297  pkt->pts = bink->video_pts++;
298  if (bink->flags & AVINDEX_KEYFRAME)
300 
301  /* -1 instructs the next call to read_packet() to read the next frame */
302  bink->current_track = -1;
303 
304  return 0;
305 }
306 
307 static int read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
308 {
309  BinkDemuxContext *bink = s->priv_data;
310  AVStream *vst = s->streams[0];
311  FFStream *const vsti = ffstream(vst);
312  int64_t ret;
313 
314  if (!(s->pb->seekable & AVIO_SEEKABLE_NORMAL))
315  return -1;
316 
317  /* seek to the first frame */
318  ret = avio_seek(s->pb, vsti->index_entries[0].pos + bink->smush_size, SEEK_SET);
319  if (ret < 0)
320  return ret;
321 
322  bink->video_pts = 0;
323  memset(bink->audio_pts, 0, sizeof(bink->audio_pts));
324  bink->current_track = -1;
325  return 0;
326 }
327 
329  .name = "bink",
330  .long_name = NULL_IF_CONFIG_SMALL("Bink"),
331  .priv_data_size = sizeof(BinkDemuxContext),
332  .read_probe = probe,
335  .read_seek = read_seek,
337 };
AV_LOG_WARNING
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:186
AVCodecParameters::extradata
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
Definition: codec_par.h:74
BINK_AUD_STEREO
@ BINK_AUD_STEREO
Definition: bink.c:40
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
avformat_new_stream
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
Definition: utils.c:768
AVCodecParameters::codec_type
enum AVMediaType codec_type
General type of the encoded data.
Definition: codec_par.h:56
AVFMT_SHOW_IDS
#define AVFMT_SHOW_IDS
Show format stream IDs numbers.
Definition: avformat.h:473
AV_WL32
#define AV_WL32(p, v)
Definition: intreadwrite.h:426
ff_get_extradata
int ff_get_extradata(AVFormatContext *s, AVCodecParameters *par, AVIOContext *pb, int size)
Allocate extradata with additional AV_INPUT_BUFFER_PADDING_SIZE at end which is always set to 0 and f...
Definition: utils.c:469
AVERROR_EOF
#define AVERROR_EOF
End of file.
Definition: error.h:57
BinkAudFlags
BinkAudFlags
Definition: bink.c:38
AV_CH_LAYOUT_MONO
#define AV_CH_LAYOUT_MONO
Definition: channel_layout.h:90
BinkDemuxContext::video_pts
int64_t video_pts
Definition: bink.c:55
AVPacket::data
uint8_t * data
Definition: packet.h:373
b
#define b
Definition: input.c:40
AVStream::avg_frame_rate
AVRational avg_frame_rate
Average framerate.
Definition: avformat.h:1015
BinkDemuxContext
Definition: bink.c:50
AVCodecParameters::codec_tag
uint32_t codec_tag
Additional information about the codec (corresponds to the AVI FOURCC).
Definition: codec_par.h:64
AVProbeData::buf_size
int buf_size
Size of buf except extra allocated bytes.
Definition: avformat.h:450
BinkDemuxContext::file_size
uint32_t file_size
Definition: bink.c:51
AV_PKT_FLAG_KEY
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
Definition: packet.h:428
AVINDEX_KEYFRAME
#define AVINDEX_KEYFRAME
Definition: avformat.h:809
BinkDemuxContext::current_track
int current_track
audio track to return in next packet
Definition: bink.c:54
AVPROBE_SCORE_MAX
#define AVPROBE_SCORE_MAX
maximum score
Definition: avformat.h:459
AVCodecParameters::channels
int channels
Audio only.
Definition: codec_par.h:166
ffstream
static av_always_inline FFStream * ffstream(AVStream *st)
Definition: internal.h:432
AVSEEK_FLAG_ANY
#define AVSEEK_FLAG_ANY
seek to any frame, even non-keyframes
Definition: avformat.h:2277
av_add_index_entry
int av_add_index_entry(AVStream *st, int64_t pos, int64_t timestamp, int size, int distance, int flags)
Add an index entry into a sorted list.
Definition: seek.c:117
BinkDemuxContext::num_audio_tracks
uint32_t num_audio_tracks
Definition: bink.c:53
AVStream::duration
int64_t duration
Decoding: duration of the stream, in stream time base.
Definition: avformat.h:985
avio_rl16
unsigned int avio_rl16(AVIOContext *s)
Definition: aviobuf.c:743
AV_CH_LAYOUT_STEREO
#define AV_CH_LAYOUT_STEREO
Definition: channel_layout.h:91
signature
static const char signature[]
Definition: ipmovie.c:592
pkt
AVPacket * pkt
Definition: movenc.c:59
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:180
AVInputFormat
Definition: avformat.h:650
read_seek
static int read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
Definition: bink.c:307
BINK_AUD_USEDCT
@ BINK_AUD_USEDCT
Definition: bink.c:41
BINK_MAX_AUDIO_TRACKS
#define BINK_MAX_AUDIO_TRACKS
Definition: bink.c:45
intreadwrite.h
s
#define s(width, name)
Definition: cbs_vp9.c:257
AVInputFormat::name
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:655
AVProbeData::buf
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
Definition: avformat.h:449
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
AVCodecParameters::width
int width
Video only.
Definition: codec_par.h:126
AVIndexEntry::size
int size
Definition: avformat.h:812
AV_CODEC_ID_BINKAUDIO_DCT
@ AV_CODEC_ID_BINKAUDIO_DCT
Definition: codec_id.h:471
BinkDemuxContext::flags
int flags
Definition: bink.c:59
AVFormatContext
Format I/O context.
Definition: avformat.h:1200
internal.h
AVStream::codecpar
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition: avformat.h:1095
SMUSH_BLOCK_SIZE
#define SMUSH_BLOCK_SIZE
Definition: bink.c:48
AVStream::time_base
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented.
Definition: avformat.h:965
NULL
#define NULL
Definition: coverity.c:32
read_probe
static int read_probe(const AVProbeData *pd)
Definition: jvdec.c:55
AVIndexEntry::flags
int flags
Definition: avformat.h:811
AV_RN32
#define AV_RN32(p)
Definition: intreadwrite.h:364
AVProbeData
This structure contains the data a format has to probe a file.
Definition: avformat.h:447
probe
static int probe(const AVProbeData *p)
Definition: bink.c:63
BinkDemuxContext::smush_size
int smush_size
Definition: bink.c:60
AVCodecParameters::sample_rate
int sample_rate
Audio only.
Definition: codec_par.h:170
avio_rl32
unsigned int avio_rl32(AVIOContext *s)
Definition: aviobuf.c:759
AVIOContext
Bytestream IO Context.
Definition: avio.h:161
AVPacket::size
int size
Definition: packet.h:374
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:117
FFStream
Definition: internal.h:194
read_header
static int read_header(AVFormatContext *s)
Definition: bink.c:85
BINK_MAX_HEIGHT
#define BINK_MAX_HEIGHT
Definition: bink.c:47
AVPacket::flags
int flags
A combination of AV_PKT_FLAG values.
Definition: packet.h:379
BINK_AUD_16BITS
@ BINK_AUD_16BITS
prefer 16-bit output
Definition: bink.c:39
AV_CODEC_ID_NONE
@ AV_CODEC_ID_NONE
Definition: codec_id.h:48
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:271
AVPacket::pts
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: packet.h:366
AVCodecParameters::height
int height
Definition: codec_par.h:127
AV_STRINGIFY
#define AV_STRINGIFY(s)
Definition: macros.h:66
av_inv_q
static av_always_inline AVRational av_inv_q(AVRational q)
Invert a rational.
Definition: rational.h:159
av_get_packet
int av_get_packet(AVIOContext *s, AVPacket *pkt, int size)
Allocate and read the payload of a packet and initialize its fields with default values.
Definition: utils.c:197
ret
ret
Definition: filter_design.txt:187
AVStream
Stream structure.
Definition: avformat.h:935
avio_seek
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition: aviobuf.c:260
read_packet
static int read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: bink.c:237
pos
unsigned int pos
Definition: spdifenc.c:412
avformat.h
BinkDemuxContext::audio_pts
int64_t audio_pts[BINK_MAX_AUDIO_TRACKS]
Definition: bink.c:56
AV_RL32
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_RL32
Definition: bytestream.h:92
channel_layout.h
AV_CODEC_ID_BINKVIDEO
@ AV_CODEC_ID_BINKVIDEO
Definition: codec_id.h:185
AVIO_SEEKABLE_NORMAL
#define AVIO_SEEKABLE_NORMAL
Seeking works like for a local file.
Definition: avio.h:40
BinkDemuxContext::remain_packet_size
uint32_t remain_packet_size
Definition: bink.c:58
AVIndexEntry::pos
int64_t pos
Definition: avformat.h:802
avpriv_set_pts_info
void avpriv_set_pts_info(AVStream *st, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition: utils.c:1196
AVPacket::stream_index
int stream_index
Definition: packet.h:375
avio_skip
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition: aviobuf.c:347
FFStream::index_entries
AVIndexEntry * index_entries
Only used if the format does not support seeking natively.
Definition: internal.h:277
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
AVCodecParameters::codec_id
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition: codec_par.h:60
AVPacket
This structure stores compressed data.
Definition: packet.h:350
AVCodecParameters::channel_layout
uint64_t channel_layout
Audio only.
Definition: codec_par.h:162
flags
#define flags(name, subs,...)
Definition: cbs_av1.c:561
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:28
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61
MKTAG
#define MKTAG(a, b, c, d)
Definition: macros.h:55
AV_CODEC_ID_BINKAUDIO_RDFT
@ AV_CODEC_ID_BINKAUDIO_RDFT
Definition: codec_id.h:470
ff_bink_demuxer
const AVInputFormat ff_bink_demuxer
Definition: bink.c:328
BINK_MAX_WIDTH
#define BINK_MAX_WIDTH
Definition: bink.c:46
av_index_search_timestamp
int av_index_search_timestamp(AVStream *st, int64_t timestamp, int flags)
Get the index for a specific timestamp.
Definition: seek.c:237
ff_alloc_extradata
int ff_alloc_extradata(AVCodecParameters *par, int size)
Allocate extradata with additional AV_INPUT_BUFFER_PADDING_SIZE at end which is always set to 0.
Definition: utils.c:451
avio_feof
int avio_feof(AVIOContext *s)
Similar to feof() but also returns nonzero on read errors.
Definition: aviobuf.c:375