FFmpeg
Loading...
Searching...
No Matches
binka.c
Go to the documentation of this file.
1/*
2 * Copyright (c) 2021 Paul B Mahol
3 *
4 * This file is part of FFmpeg.
5 *
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
22#include "avformat.h"
23#include "demux.h"
24#include "internal.h"
25
26static int binka_probe(const AVProbeData *p)
27{
28 if (AV_RB32(p->buf) == MKBETAG('1', 'F', 'C', 'B') &&
29 (p->buf[4] == 1 || p->buf[4] == 2))
30 return AVPROBE_SCORE_MAX;
31 return 0;
32}
33
35{
36 AVIOContext *pb = s->pb;
37 AVStream *st;
38 int entries, offset;
39
41 if (!st)
42 return AVERROR(ENOMEM);
43
44 avio_skip(pb, 5);
45
50 st->duration = avio_rl32(pb);
51
52 avio_skip(pb, 8);
53 entries = avio_rl16(pb);
54
55 offset = entries * 2 + 2;
56 avio_skip(pb, offset);
57
59
60 return 0;
61}
62
64{
65 AVIOContext *pb = s->pb;
66 AVStream *st = s->streams[0];
68 int pkt_size;
69 int ret;
70
71 if (avio_feof(pb))
72 return AVERROR_EOF;
73
74 pos = avio_tell(pb);
75 avio_skip(pb, 2);
76 pkt_size = avio_rl16(pb) + 4;
77 if (pkt_size <= 4)
79 ret = av_new_packet(pkt, pkt_size);
80 if (ret < 0)
81 return ret;
82
83 avio_read(pb, pkt->data + 4, pkt_size - 4);
84 AV_WL32(pkt->data, pkt_size);
85
86 pkt->pos = pos;
87 pkt->stream_index = 0;
88 pkt->duration = av_get_audio_frame_duration2(st->codecpar, 0);
89
90 return 0;
91}
92
94 .p.name = "binka",
95 .p.long_name = NULL_IF_CONFIG_SMALL("Bink Audio"),
96 .p.flags = AVFMT_GENERIC_INDEX,
97 .p.extensions = "binka",
98 .read_probe = binka_probe,
99 .read_header = binka_read_header,
100 .read_packet = binka_read_packet,
101};
const FFInputFormat ff_binka_demuxer
Definition binka.c:93
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 avformat.c:834
Main libavformat public API header.
#define AVPROBE_SCORE_MAX
maximum score
Definition avformat.h:483
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition avformat.h:499
int avio_feof(AVIOContext *s)
Similar to feof() but also returns nonzero on read errors.
Definition aviobuf.c:349
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition avio.h:494
unsigned int avio_rl16(AVIOContext *s)
Definition aviobuf.c:717
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition aviobuf.c:321
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition aviobuf.c:615
unsigned int avio_rl32(AVIOContext *s)
Definition aviobuf.c:733
int avio_r8(AVIOContext *s)
Definition aviobuf.c:606
static int binka_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition binka.c:63
static int binka_probe(const AVProbeData *p)
Definition binka.c:26
static int binka_read_header(AVFormatContext *s)
Definition binka.c:34
#define s(width, name)
Definition cbs_vp9.c:198
#define NULL
Definition coverity.c:32
long long int64_t
Definition coverity.c:34
static AVPacket * pkt
@ AV_CODEC_ID_BINKAUDIO_DCT
Definition codec_id.h:501
int av_new_packet(AVPacket *pkt, int size)
Allocate the payload of a packet and initialize its fields with default values.
Definition packet.c:98
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AVERROR_EOF
End of file.
Definition error.h:57
#define AVERROR(e)
Definition error.h:45
@ AVMEDIA_TYPE_AUDIO
Definition avutil.h:201
#define AV_WL32(p, v)
#define AV_RB32(p)
unsigned offset
Definition libaomenc.c:763
int av_get_audio_frame_duration2(AVCodecParameters *par, int frame_bytes)
Definition utils.c:823
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
#define MKBETAG(a, b, c, d)
Definition macros.h:56
unsigned int pos
Definition spdifenc.c:431
int nb_channels
Number of channels in this layout.
AVChannelLayout ch_layout
The channel layout and number of channels.
Definition codec_par.h:207
enum AVMediaType codec_type
General type of the encoded data.
Definition codec_par.h:53
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition codec_par.h:57
int sample_rate
The number of audio samples per second.
Definition codec_par.h:213
Format I/O context.
Definition avformat.h:1333
Bytestream IO Context.
Definition avio.h:160
This structure stores compressed data.
Definition packet.h:580
This structure contains the data a format has to probe a file.
Definition avformat.h:471
Stream structure.
Definition avformat.h:766
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition avformat.h:789
int64_t duration
Decoding: duration of the stream, in stream time base.
Definition avformat.h:825