diff options
author | Daniel Verkamp <daniel@drv.nu> | 2009-06-22 23:09:34 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-06-22 23:09:34 +0000 |
commit | 1a40491ef212869077278b46f74ee92a66809d20 (patch) | |
tree | 73badafecd3120080515ba6391fe8fe39b1435a6 /libavformat/riff.h | |
parent | 2795e3573d9407aca8060bdebaeb2119d19587c8 (diff) | |
download | ffmpeg-1a40491ef212869077278b46f74ee92a66809d20.tar.gz |
Add ff_ prefixes to exported symbols in libavformat/riff.h.
patch by Daniel Verkamp, aniel drv nu
Originally committed as revision 19254 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/riff.h')
-rw-r--r-- | libavformat/riff.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/libavformat/riff.h b/libavformat/riff.h index d287929eb8..eac0d25470 100644 --- a/libavformat/riff.h +++ b/libavformat/riff.h @@ -31,24 +31,24 @@ #include "libavcodec/avcodec.h" #include "avio.h" -int64_t start_tag(ByteIOContext *pb, const char *tag); -void end_tag(ByteIOContext *pb, int64_t start); +int64_t ff_start_tag(ByteIOContext *pb, const char *tag); +void ff_end_tag(ByteIOContext *pb, int64_t start); typedef struct AVCodecTag { int id; unsigned int tag; } AVCodecTag; -void put_bmp_header(ByteIOContext *pb, AVCodecContext *enc, const AVCodecTag *tags, int for_asf); -int put_wav_header(ByteIOContext *pb, AVCodecContext *enc); -enum CodecID wav_codec_get_id(unsigned int tag, int bps); -void get_wav_header(ByteIOContext *pb, AVCodecContext *codec, int size); +void ff_put_bmp_header(ByteIOContext *pb, AVCodecContext *enc, const AVCodecTag *tags, int for_asf); +int ff_put_wav_header(ByteIOContext *pb, AVCodecContext *enc); +enum CodecID ff_wav_codec_get_id(unsigned int tag, int bps); +void ff_get_wav_header(ByteIOContext *pb, AVCodecContext *codec, int size); -extern const AVCodecTag codec_bmp_tags[]; -extern const AVCodecTag codec_wav_tags[]; +extern const AVCodecTag ff_codec_bmp_tags[]; +extern const AVCodecTag ff_codec_wav_tags[]; -unsigned int codec_get_tag(const AVCodecTag *tags, int id); -enum CodecID codec_get_id(const AVCodecTag *tags, unsigned int tag); +unsigned int ff_codec_get_tag(const AVCodecTag *tags, int id); +enum CodecID ff_codec_get_id(const AVCodecTag *tags, unsigned int tag); void ff_parse_specific_params(AVCodecContext *stream, int *au_rate, int *au_ssize, int *au_scale); #endif /* AVFORMAT_RIFF_H */ |