30 #define AIFF_C_VERSION1 0xA2805140
98 unsigned int num_frames;
109 sample_rate = ldexp(val, exp - 16383 - 63);
176 if (p->
buf[0] ==
'F' && p->
buf[1] ==
'O' &&
177 p->
buf[2] ==
'R' && p->
buf[3] ==
'M' &&
178 p->
buf[8] ==
'A' && p->
buf[9] ==
'I' &&
179 p->
buf[10] ==
'F' && (p->
buf[11] ==
'F' || p->
buf[11] ==
'C'))
198 if (filesize < 0 || tag !=
MKTAG(
'F',
'O',
'R',
'M'))
203 if (tag ==
MKTAG(
'A',
'I',
'F',
'F'))
205 else if (tag !=
MKTAG(
'A',
'I',
'F',
'C'))
214 while (filesize > 0) {
220 filesize -= size + 8;
223 case MKTAG(
'C',
'O',
'M',
'M'):
231 case MKTAG(
'F',
'V',
'E',
'R'):
234 case MKTAG(
'N',
'A',
'M',
'E'):
237 case MKTAG(
'A',
'U',
'T',
'H'):
240 case MKTAG(
'(',
'c',
')',
' '):
243 case MKTAG(
'A',
'N',
'N',
'O'):
246 case MKTAG(
'S',
'S',
'N',
'D'):
259 case MKTAG(
'w',
'a',
'v',
'e'):
260 if ((uint64_t)size > (1<<30))
292 #define MAX_SIZE 4096
312 size =
FFMIN(max_size, size);
void * av_malloc(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
static int read_seek(AVFormatContext *ctx, int stream_index, int64_t timestamp, int flags)
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
static int aiff_read_header(AVFormatContext *s)
unsigned int avio_rb16(AVIOContext *s)
int block_align
number of bytes per packet if constant and known or 0 Used by some WAV based audio codecs...
unsigned int avio_rb32(AVIOContext *s)
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
static int aiff_read_packet(AVFormatContext *s, AVPacket *pkt)
AVStream ** streams
A list of all streams in the file.
#define AVERROR_EOF
End of file.
uint64_t avio_rb64(AVIOContext *s)
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
int bits_per_coded_sample
bits per sample/pixel from the demuxer (needed for huffyuv).
int duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
AVCodecID
Identify the syntax and semantics of the bitstream.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
int av_get_bits_per_sample(enum AVCodecID codec_id)
Return codec bits per sample.
AVDictionary * metadata
Metadata that applies to the whole file.
unsigned int avio_rl32(AVIOContext *s)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
static void get_meta(AVFormatContext *s, const char *key, int size)
void av_log(void *avcl, int level, const char *fmt,...)
static enum AVCodecID aiff_codec_get_id(int bps)
AVCodecContext * codec
Codec context associated with this stream.
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
#define FF_INPUT_BUFFER_PADDING_SIZE
Required number of additionally allocated bytes at the end of the input bitstream for decoding...
int seekable
A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
int bit_rate
the average bitrate
#define AV_DICT_DONT_STRDUP_VAL
Take ownership of a value that's been allocated with av_malloc() and chilren.
static av_always_inline int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
static int aiff_probe(AVProbeData *p)
static int read_header(FFV1Context *f)
static int get_tag(AVIOContext *pb, uint32_t *tag)
enum AVMediaType codec_type
int sample_rate
samples per second
AVIOContext * pb
I/O context.
main external API structure.
unsigned int codec_tag
fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
static int read_packet(AVFormatContext *ctx, AVPacket *pkt)
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
This structure contains the data a format has to probe a file.
int av_get_audio_frame_duration(AVCodecContext *avctx, int frame_bytes)
Return audio frame duration.
int64_t duration
Decoding: duration of the stream, in stream time base.
AVInputFormat ff_aiff_demuxer
int64_t start_time
Decoding: pts of the first frame of the stream, in stream time base.
static const AVCodecTag ff_codec_aiff_tags[]
int64_t nb_frames
number of frames in this stream if known or 0
static unsigned int get_aiff_header(AVFormatContext *s, int size, unsigned version)
int eof_reached
true if eof reached
as in Berlin toast format
int channels
number of audio channels
void * priv_data
Format private data.
common header for AIFF muxer and demuxer
#define MKTAG(a, b, c, d)
This structure stores compressed data.
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...