[FFmpeg-soc] [soc]: r3188 - aacenc/aacenc.c
kostya
subversion at mplayerhq.hu
Tue Aug 12 12:18:00 CEST 2008
Author: kostya
Date: Tue Aug 12 12:18:00 2008
New Revision: 3188
Log:
Remove redundant part of the condition
Modified:
aacenc/aacenc.c
Modified: aacenc/aacenc.c
==============================================================================
--- aacenc/aacenc.c (original)
+++ aacenc/aacenc.c Tue Aug 12 12:18:00 2008
@@ -416,7 +416,7 @@ static void encode_band_coeffs(AACEncCon
const int dim = (aac_cb_info[cb].flags & CB_PAIRS) ? 2 : 4;
int i, j, idx;
- if(!bits || !codes) return;
+ if(!bits) return;
//TODO: factorize?
if(aac_cb_info[cb].flags & CB_ESCAPE){
More information about the FFmpeg-soc
mailing list