diff options
author | Diego Biurrun | 2008-02-02 14:55:57 +0000 |
---|---|---|
committer | Diego Biurrun | 2008-02-02 14:55:57 +0000 |
commit | 5f359c8d3e8b1be198d7356dea3e5d788aa12f63 (patch) | |
tree | 879fe38ca514f88060748ff20ad8f4f33dd51765 /libavformat/oggdec.h | |
parent | eee7e7998bc78f05eb5c0814c99cb1526422e7ea (diff) |
cosmetics: sort ogg_codec_t list
Originally committed as revision 11810 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/oggdec.h')
-rw-r--r-- | libavformat/oggdec.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavformat/oggdec.h b/libavformat/oggdec.h index 66af84cf18..177032c0c3 100644 --- a/libavformat/oggdec.h +++ b/libavformat/oggdec.h @@ -75,14 +75,14 @@ typedef struct ogg { #define OGG_FLAG_BOS 2 #define OGG_FLAG_EOS 4 -extern ogg_codec_t vorbis_codec; -extern ogg_codec_t theora_codec; extern ogg_codec_t flac_codec; -extern ogg_codec_t old_flac_codec; -extern ogg_codec_t ogm_video_codec; extern ogg_codec_t ogm_audio_codec; -extern ogg_codec_t ogm_text_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 theora_codec; +extern ogg_codec_t vorbis_codec; extern int vorbis_comment(AVFormatContext *ms, uint8_t *buf, int size); |