diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2008-08-24 17:37:43 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2008-08-24 17:37:43 +0000 |
commit | 547ea47d4fb2792e4385f2fadc32dbbcc60a2cc0 (patch) | |
tree | 7162193685ae7d4def5259bb76750a57e34c5b07 /libavformat/oggdec.h | |
parent | aecf157ed0c193b2f871102ccbe2bc39877dfc93 (diff) | |
download | ffmpeg-547ea47d4fb2792e4385f2fadc32dbbcc60a2cc0.tar.gz |
Add ff_ prefix to ogg_codec_t structs
Originally committed as revision 14951 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/oggdec.h')
-rw-r--r-- | libavformat/oggdec.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libavformat/oggdec.h b/libavformat/oggdec.h index 1be3fc1943..997acdd4be 100644 --- a/libavformat/oggdec.h +++ b/libavformat/oggdec.h @@ -75,15 +75,15 @@ typedef struct ogg { #define OGG_FLAG_BOS 2 #define OGG_FLAG_EOS 4 -extern const ogg_codec_t flac_codec; -extern const ogg_codec_t ogm_audio_codec; -extern const ogg_codec_t ogm_old_codec; -extern const ogg_codec_t ogm_text_codec; -extern const ogg_codec_t ogm_video_codec; -extern const ogg_codec_t old_flac_codec; -extern const ogg_codec_t speex_codec; -extern const ogg_codec_t theora_codec; -extern const ogg_codec_t vorbis_codec; +extern const ogg_codec_t ff_flac_codec; +extern const ogg_codec_t ff_ogm_audio_codec; +extern const ogg_codec_t ff_ogm_old_codec; +extern const ogg_codec_t ff_ogm_text_codec; +extern const ogg_codec_t ff_ogm_video_codec; +extern const ogg_codec_t ff_old_flac_codec; +extern const ogg_codec_t ff_speex_codec; +extern const ogg_codec_t ff_theora_codec; +extern const ogg_codec_t ff_vorbis_codec; extern int vorbis_comment(AVFormatContext *ms, uint8_t *buf, int size); |