00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00028 #ifndef AVFORMAT_RIFF_H
00029 #define AVFORMAT_RIFF_H
00030
00031 #include "libavcodec/avcodec.h"
00032 #include "avio.h"
00033
00034 int64_t start_tag(ByteIOContext *pb, const char *tag);
00035 void end_tag(ByteIOContext *pb, int64_t start);
00036
00037 typedef struct AVCodecTag {
00038 int id;
00039 unsigned int tag;
00040 } AVCodecTag;
00041
00042 void put_bmp_header(ByteIOContext *pb, AVCodecContext *enc, const AVCodecTag *tags, int for_asf);
00043 int put_wav_header(ByteIOContext *pb, AVCodecContext *enc);
00044 enum CodecID wav_codec_get_id(unsigned int tag, int bps);
00045 void get_wav_header(ByteIOContext *pb, AVCodecContext *codec, int size);
00046
00047 extern const AVCodecTag codec_bmp_tags[];
00048 extern const AVCodecTag codec_wav_tags[];
00049
00050 unsigned int codec_get_tag(const AVCodecTag *tags, int id);
00051 enum CodecID codec_get_id(const AVCodecTag *tags, unsigned int tag);
00052 void ff_parse_specific_params(AVCodecContext *stream, int *au_rate, int *au_ssize, int *au_scale);
00053
00054 #endif