Go to the documentation of this file.
104 int64_t h1offset,
pos, toffset;
105 uint32_t
size, asize, start = 0;
109 int bfstm = !strcmp(
"bfstm",
s->iformat->name);
119 if (
bom != 0xFEFF &&
bom != 0xFFFE) {
125 b->little_endian = 1;
140 uint32_t info_offset = 0;
141 uint16_t section_count, header_size,
i;
150 && !(start && info_offset)
151 &&
i < section_count;
i++) {
174 if (!info_offset || !start)
200 case 1: codec =
b->little_endian ?
203 case 2: codec =
b->little_endian ?
242 b->current_block = 0;
244 if (
b->block_count > UINT16_MAX) {
254 b->last_block_used_bytes =
read32(
s);
259 if (
b->last_block_used_bytes >
b->last_block_size)
278 b->offsets[ch].channel = ch;
291 if (
avio_read(
s->pb,
b->table + ch * 32, 32) != 32) {
317 case MKTAG(
'S',
'E',
'E',
'K'):
318 case MKTAG(
'A',
'D',
'P',
'C'):
341 for (
i = 0;
i < asize;
i += 2) {
351 case MKTAG(
'D',
'A',
'T',
'A'):
393 if (
b->current_block ==
b->block_count) {
394 size =
b->last_block_used_bytes;
396 skip =
b->last_block_size -
b->last_block_used_bytes;
399 uint32_t adjusted_size =
samples / 14 * 8;
401 adjusted_size += (
samples % 14 + 1) / 2 + 1;
403 skip +=
size - adjusted_size;
404 size = adjusted_size;
406 }
else if (
b->current_block <
b->block_count) {
407 size =
b->block_size;
422 if (
size > (INT_MAX - 32 - 4) ||
431 bytestream_put_le32(&dst,
samples);
434 bytestream_put_be32(&dst,
samples);
438 (
b->current_block - 1), 4 * par->
channels);
463 int64_t timestamp,
int flags)
471 timestamp /=
b->samples_per_block;
472 if (timestamp >=
b->block_count)
473 timestamp =
b->block_count - 1;
479 b->current_block = timestamp;
493 .extensions =
"brstm",
505 .extensions =
"bfstm,bcstm",
#define AV_LOG_WARNING
Something somehow does not look correct.
static int sort_offsets(const void *a, const void *b)
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
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
enum AVMediaType codec_type
General type of the encoded data.
static int read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
uint32_t last_block_used_bytes
This struct describes the properties of an encoded stream.
AVInputFormat ff_brstm_demuxer
#define AVERROR_EOF
End of file.
#define MKTAG(a, b, c, d)
@ AV_CODEC_ID_PCM_S16BE_PLANAR
int64_t duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
uint32_t last_block_samples
@ AV_CODEC_ID_PCM_S16LE_PLANAR
@ AV_CODEC_ID_ADPCM_THP_LE
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
int64_t duration
Decoding: duration of the stream, in stream time base.
unsigned int avio_rl16(AVIOContext *s)
unsigned int avio_rb32(AVIOContext *s)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
int av_new_packet(AVPacket *pkt, int size)
Allocate the payload of a packet and initialize its fields with default values.
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_RL16
static int read_close(AVFormatContext *s)
AVCodecParameters * codecpar
Codec parameters associated with this stream.
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
This structure contains the data a format has to probe a file.
uint32_t samples_per_block
int sample_rate
Audio only.
unsigned int avio_rl32(AVIOContext *s)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
#define FFDIFFSIGN(x, y)
Comparator.
int avio_r8(AVIOContext *s)
The reader does not expect b to be semantically here and if the code is changed by maybe adding a a division or other the signedness will almost certainly be mistaken To avoid this confusion a new type was SUINT is the C unsigned type but it holds a signed int to use the same example SUINT a
static av_always_inline void bytestream_put_buffer(uint8_t **b, const uint8_t *src, unsigned int size)
#define AV_TIME_BASE
Internal time base represented as integer.
BRSTMCoeffOffset offsets[256]
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
int64_t av_rescale(int64_t a, int64_t b, int64_t c)
Rescale a 64-bit integer with rounding to nearest.
AVInputFormat ff_bfstm_demuxer
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
unsigned int avio_rb16(AVIOContext *s)
static av_always_inline unsigned int read32(AVFormatContext *s)
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_RL32
static int probe(const AVProbeData *p)
static int probe_bfstm(const AVProbeData *p)
static int read_packet(AVFormatContext *s, AVPacket *pkt)
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Filter the word “frame” indicates either a video frame or a group of audio samples
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
int av_dict_set_int(AVDictionary **pm, const char *key, int64_t value, int flags)
Convenience wrapper for av_dict_set that converts the value to a string and stores it.
#define avpriv_request_sample(...)
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
This structure stores compressed data.
@ AV_CODEC_ID_PCM_S8_PLANAR
#define flags(name, subs,...)
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
int64_t start_time
Decoding: pts of the first frame of the stream in presentation order, in stream time base.
static int read_header(AVFormatContext *s)
static av_always_inline unsigned int read16(AVFormatContext *s)
int avio_feof(AVIOContext *s)
Similar to feof() but also returns nonzero on read errors.