diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-05-22 23:39:11 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-05-22 23:39:11 +0000 |
commit | bb4c2140c2333d71aaea15aa7aa759f3505a6139 (patch) | |
tree | 41be0860e6eec7a5229cf8c3ba0f83c29babe463 /libavcodec/allcodecs.c | |
parent | cefe0607dd751b58d08e7dca4a0c381e917f30d9 (diff) | |
download | ffmpeg-bb4c2140c2333d71aaea15aa7aa759f3505a6139.tar.gz |
libgsm warper by (Alban Bedel: albeu, free fr)
Originally committed as revision 4302 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/allcodecs.c')
-rw-r--r-- | libavcodec/allcodecs.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/allcodecs.c b/libavcodec/allcodecs.c index c6aa6f922a..6e4b6ca0d2 100644 --- a/libavcodec/allcodecs.c +++ b/libavcodec/allcodecs.c @@ -186,6 +186,9 @@ void avcodec_register_all(void) register_avcodec(&x264_encoder); #endif //CONFIG_X264_ENCODER #endif +#ifdef CONFIG_LIBGSM + register_avcodec(&libgsm_encoder); +#endif //CONFIG_LIBGSM #endif /* CONFIG_ENCODERS */ #ifdef CONFIG_RAWVIDEO_ENCODER register_avcodec(&rawvideo_encoder); @@ -482,6 +485,9 @@ void avcodec_register_all(void) #ifdef CONFIG_VORBIS_DECODER register_avcodec(&vorbis_decoder); #endif +#ifdef CONFIG_LIBGSM + register_avcodec(&libgsm_decoder); +#endif //CONFIG_LIBGSM #endif /* CONFIG_DECODERS */ #ifdef AMR_NB |