[FFmpeg-soc] [soc]: r4097 - amr/amrnbfloatdec.c

kmalaussene subversion at mplayerhq.hu
Thu Feb 19 21:21:01 CET 2009


Author: kmalaussene
Date: Thu Feb 19 21:21:01 2009
New Revision: 4097

Log:
Merge 2 conditions !=MODE_102 and !=MODE_122 into < MODE_102.

Modified:
   amr/amrnbfloatdec.c

Modified: amr/amrnbfloatdec.c
==============================================================================
--- amr/amrnbfloatdec.c	Thu Feb 19 20:52:02 2009	(r4096)
+++ amr/amrnbfloatdec.c	Thu Feb 19 21:21:01 2009	(r4097)
@@ -775,8 +775,7 @@ void do_phase_dispersion(AMRContext *p)
 
     //FIXME: disable filtering for very low level of fixed_gain
 
-    if(p->cur_frame_mode != MODE_74 && p->cur_frame_mode != MODE_102 &&
-            p->cur_frame_mode != MODE_122 && ir_filter_strength < 2) {
+    if(p->cur_frame_mode != MODE_74 && p->cur_frame_mode < MODE_102 && ir_filter_strength < 2) {
         const float *ir_filter;
         // assign the correct impulse response
         if(ir_filter_strength == 1) {



More information about the FFmpeg-soc mailing list