28 #ifndef AVFORMAT_RIFF_H 29 #define AVFORMAT_RIFF_H 38 int64_t ff_start_tag(
AVIOContext *pb,
const char *tag);
54 #define FF_PUT_WAV_HEADER_FORCE_WAVEFORMATEX 0x00000001 59 #define FF_PUT_WAV_HEADER_SKIP_CHANNELMASK 0x00000002 70 enum AVCodecID ff_wav_codec_get_id(
unsigned int tag,
int bps);
76 void ff_parse_specific_params(
AVStream *st,
int *au_rate,
int *au_ssize,
int *au_scale);
90 typedef uint8_t ff_asf_guid[16];
100 "%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x " \ 101 "{%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x}" 103 #define FF_ARG_GUID(g) \ 104 g[0], g[1], g[2], g[3], g[4], g[5], g[6], g[7], \ 105 g[8], g[9], g[10], g[11], g[12], g[13], g[14], g[15],\ 106 g[3], g[2], g[1], g[0], g[5], g[4], g[7], g[6], \ 107 g[8], g[9], g[10], g[11], g[12], g[13], g[14], g[15] 109 #define FF_MEDIASUBTYPE_BASE_GUID \ 110 0x00, 0x00, 0x10, 0x00, 0x80, 0x00, 0x00, 0xAA, 0x00, 0x38, 0x9B, 0x71 111 #define FF_AMBISONIC_BASE_GUID \ 112 0x21, 0x07, 0xD3, 0x11, 0x86, 0x44, 0xC8, 0xC1, 0xCA, 0x00, 0x00, 0x00 113 #define FF_BROKEN_BASE_GUID \ 114 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x80, 0x00, 0x00, 0xAA 116 static av_always_inline
int ff_guidcmp(
const void *g1,
const void *g2)
118 return memcmp(g1, g2,
sizeof(ff_asf_guid));
122 void ff_put_guid(
AVIOContext *s,
const ff_asf_guid *g);
Bytestream IO Context.
Definition: avio.h:161
int ff_put_wav_header(AVFormatContext *s, AVIOContext *pb, AVCodecParameters *par, int flags)
Write WAVEFORMAT header structure.
Definition: riffenc.c:54
This struct describes the properties of an encoded stream.
Definition: avcodec.h:3876
Format I/O context.
Definition: avformat.h:1342
Definition: internal.h:44
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition: avcodec.h:215
void ff_riff_write_info_tag(AVIOContext *pb, const char *tag, const char *str)
Write a single RIFF info tag.
Definition: riffenc.c:295
Stream structure.
Definition: avformat.h:873
Libavcodec external API header.
void ff_riff_write_info(AVFormatContext *s)
Write all recognized RIFF tags from s->metadata.
Definition: riffenc.c:327
int ff_get_bmp_header(AVIOContext *pb, AVStream *st, uint32_t *size)
Read BITMAPINFOHEADER structure and set AVStream codec width, height and bits_per_encoded_sample fiel...
Definition: riffdec.c:211