From 4e1424fdc7ab00e6b8f2c954f00a5b56e2e6cf42 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Tue, 19 May 2009 17:30:27 +0000 Subject: [PATCH] cosmetics: Move AMR-WB-specific code to the AMR-WB part of the file. Originally committed as revision 18869 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/libamr.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libavcodec/libamr.c b/libavcodec/libamr.c index 51c3a48..3b103b8 100644 --- a/libavcodec/libamr.c +++ b/libavcodec/libamr.c @@ -62,8 +62,6 @@ static const char nb_bitrate_unsupported[] = "bitrate not supported: use one of 4.75k, 5.15k, 5.9k, 6.7k, 7.4k, 7.95k, 10.2k or 12.2k\n"; -static const char wb_bitrate_unsupported[] = - "bitrate not supported: use one of 6.6k, 8.85k, 12.65k, 14.25k, 15.85k, 18.25k, 19.85k, 23.05k, or 23.85k\n"; /* Common code for fixed and float version*/ typedef struct AMR_bitrates { @@ -277,6 +275,9 @@ AVCodec libamr_nb_encoder = { #include #include +static const char wb_bitrate_unsupported[] = + "bitrate not supported: use one of 6.6k, 8.85k, 12.65k, 14.25k, 15.85k, 18.25k, 19.85k, 23.05k, or 23.85k\n"; + /* Common code for fixed and float version*/ typedef struct AMRWB_bitrates { int rate; -- 2.7.4