23#include "config_components.h"
35#define APM_FILE_HEADER_SIZE 20
36#define APM_FILE_EXTRADATA_SIZE 80
37#define APM_EXTRADATA_SIZE 28
39#define APM_MAX_READ_SIZE 4096
41#define APM_TAG_CODEC 0x2000
42#define APM_TAG_VS12 MKTAG('v', 's', '1', '2')
43#define APM_TAG_DATA MKTAG('D', 'A', 'T', 'A')
67static void apm_parse_extradata(
APMExtraData *ext,
const uint8_t *buf)
94 if (
p->buf_size < 100)
160 apm_parse_extradata(&extradata, buf);
199 pkt->stream_index = 0;
208 .read_probe = apm_probe,
209 .read_header = apm_read_header,
210 .read_packet = apm_read_packet
280 if (file_size >= UINT32_MAX) {
282 "Filesize %"PRId64
" invalid for APM, output file will be broken\n",
297 .p.extensions =
"apm",
303 .init = apm_write_init,
304 .write_header = apm_write_header,
306 .write_trailer = apm_write_trailer
#define APM_FILE_EXTRADATA_SIZE
#define APM_FILE_HEADER_SIZE
#define APM_EXTRADATA_SIZE
#define APM_MAX_READ_SIZE
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
#define AVIO_SEEKABLE_NORMAL
Seeking works like for a local file.
void avio_wl32(AVIOContext *s, unsigned int val)
void avio_wl16(AVIOContext *s, unsigned int val)
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
unsigned int avio_rl16(AVIOContext *s)
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
unsigned int avio_rl32(AVIOContext *s)
void avio_write(AVIOContext *s, const unsigned char *buf, int size)
int ffio_read_size(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
#define i(width, name, range_min, range_max)
Public libavutil channel layout APIs header.
@ AV_CODEC_ID_ADPCM_IMA_APM
#define AV_PKT_FLAG_CORRUPT
The packet content is corrupted.
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
void av_channel_layout_default(AVChannelLayout *ch_layout, int nb_channels)
Get the default channel layout for a given number of channels.
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
@ AV_SAMPLE_FMT_S16
signed 16 bits
common internal API header
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
#define FF_OFMT_FLAG_MAX_ONE_OF_EACH
If this flag is set, it indicates that for each codec type whose corresponding default codec (i....
#define FF_OFMT_FLAG_ONLY_DEFAULT_CODECS
If this flag is set, then the only permitted audio/video/subtitle codec ids are AVOutputFormat....
IDirect3DDxgiInterfaceAccess _COM_Outptr_ void ** p
#define FF_ARRAY_ELEMS(a)
int nb_channels
Number of channels in this layout.
This struct describes the properties of an encoded stream.
int extradata_size
Size of the extradata content in bytes.
int bits_per_coded_sample
The number of bits per sample in the codedwords.
AVChannelLayout ch_layout
The channel layout and number of channels.
int64_t bit_rate
The average bitrate of the encoded data (in bits per second).
enum AVMediaType codec_type
General type of the encoded data.
int block_align
The number of bytes per coded audio frame, required by some formats.
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
int sample_rate
The number of audio samples per second.
This structure stores compressed data.
This structure contains the data a format has to probe a file.
AVCodecParameters * codecpar
Codec parameters associated with this stream.
int64_t duration
Decoding: duration of the stream, in stream time base.
int64_t start_time
Decoding: pts of the first frame of the stream in presentation order, in stream time base.
#define avpriv_request_sample(...)