diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2008-08-24 17:09:15 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2008-08-24 17:09:15 +0000 |
commit | cd34bc76174397712fc0b2502d550a45dd25c11c (patch) | |
tree | 4a9e2ef00bac83bae45b6d3724d7d7758a11ece8 /libavformat/oggdec.h | |
parent | c18545929e134845ff57e3e98f494965e42ab10a (diff) | |
download | ffmpeg-cd34bc76174397712fc0b2502d550a45dd25c11c.tar.gz |
Make ogg_codec_t descriptions const
Originally committed as revision 14948 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 4e88d0e393..1be3fc1943 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 ogg_codec_t flac_codec; -extern ogg_codec_t ogm_audio_codec; -extern ogg_codec_t ogm_old_codec; -extern ogg_codec_t ogm_text_codec; -extern ogg_codec_t ogm_video_codec; -extern ogg_codec_t old_flac_codec; -extern ogg_codec_t speex_codec; -extern ogg_codec_t theora_codec; -extern ogg_codec_t vorbis_codec; +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 int vorbis_comment(AVFormatContext *ms, uint8_t *buf, int size); |