diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2008-02-06 12:37:37 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2008-02-06 12:37:37 +0000 |
commit | cb4ddf7765b0a27904725fa4aea41afd17ffcecd (patch) | |
tree | 53775e3972784c6bbf3565dab937cc41bb3c3a5b /libavformat/oggdec.c | |
parent | 1d67b037f7fc344f2e0b4dac6ac0ca3dd5438e6c (diff) | |
download | ffmpeg-cb4ddf7765b0a27904725fa4aea41afd17ffcecd.tar.gz |
Add support for speex in ogg
Originally committed as revision 11878 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/oggdec.c')
-rw-r--r-- | libavformat/oggdec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/oggdec.c b/libavformat/oggdec.c index 5b67291c63..96d16a8737 100644 --- a/libavformat/oggdec.c +++ b/libavformat/oggdec.c @@ -38,6 +38,7 @@ #define DECODER_BUFFER_SIZE MAX_PAGE_SIZE static ogg_codec_t *ogg_codecs[] = { + &speex_codec, &vorbis_codec, &theora_codec, &flac_codec, |