Make ogg_codec_t descriptions const

Originally committed as revision 14948 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Reimar Döffinger
2008-08-24 17:09:15 +00:00
parent c18545929e
commit cd34bc7617
7 changed files with 20 additions and 20 deletions

View File

@@ -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);