summaryrefslogtreecommitdiff
path: root/libavcodec/allcodecs.c
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2006-07-12 16:49:14 +0000
committerMåns Rullgård <mans@mansr.com>2006-07-12 16:49:14 +0000
commit6636b7e8e32121eec732778cf58a81574f618bb9 (patch)
treed56cb6c34d42d1b86849465830d4adac33e573aa /libavcodec/allcodecs.c
parent8515d1c846c982daabb6199b4a794505c54aa0dc (diff)
rename AMR config variables to CONFIG_AMR*
Originally committed as revision 5725 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/allcodecs.c')
-rw-r--r--libavcodec/allcodecs.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/allcodecs.c b/libavcodec/allcodecs.c
index 172193fc1d..c87b5973df 100644
--- a/libavcodec/allcodecs.c
+++ b/libavcodec/allcodecs.c
@@ -540,7 +540,7 @@ void avcodec_register_all(void)
#endif //CONFIG_FLASHSV_DECODER
#endif /* CONFIG_DECODERS */
-#if defined(AMR_NB) || defined(AMR_NB_FIXED)
+#if defined(CONFIG_AMR_NB) || defined(CONFIG_AMR_NB_FIXED)
#ifdef CONFIG_AMR_NB_DECODER
register_avcodec(&amr_nb_decoder);
#endif //CONFIG_AMR_NB_DECODER
@@ -549,9 +549,9 @@ void avcodec_register_all(void)
register_avcodec(&amr_nb_encoder);
#endif //CONFIG_AMR_NB_ENCODER
#endif //CONFIG_ENCODERS
-#endif /* AMR_NB || AMR_NB_FIXED */
+#endif /* CONFIG_AMR_NB || CONFIG_AMR_NB_FIXED */
-#ifdef AMR_WB
+#ifdef CONFIG_AMR_WB
#ifdef CONFIG_AMR_WB_DECODER
register_avcodec(&amr_wb_decoder);
#endif //CONFIG_AMR_WB_DECODER
@@ -560,7 +560,7 @@ void avcodec_register_all(void)
register_avcodec(&amr_wb_encoder);
#endif //CONFIG_AMR_WB_ENCODER
#endif //CONFIG_ENCODERS
-#endif /* AMR_WB */
+#endif /* CONFIG_AMR_WB */
#ifdef CONFIG_BMP_DECODER
register_avcodec(&bmp_decoder);