diff options
author | Jai Menon <jmenon86@gmail.com> | 2010-01-08 16:34:50 +0000 |
---|---|---|
committer | Jai Menon <jmenon86@gmail.com> | 2010-01-08 16:34:50 +0000 |
commit | a4bd598541342828c41d374c04c6be459fcd2fd6 (patch) | |
tree | 57f938dcef415082ad6fc85343cba7e9aa117738 /libavcodec | |
parent | 28fbbee15fd25d343c21a28a50c102411da48395 (diff) | |
download | ffmpeg-a4bd598541342828c41d374c04c6be459fcd2fd6.tar.gz |
Snow : remove pointless 'if(1)'.
Originally committed as revision 21093 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/snow.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/snow.c b/libavcodec/snow.c index 76f0b35f2d..b7d205a62a 100644 --- a/libavcodec/snow.c +++ b/libavcodec/snow.c @@ -1298,7 +1298,6 @@ static inline void unpack_coeffs(SnowContext *s, SubBand *b, SubBand * parent, i const int h= b->height; int x,y; - if(1){ int run, runs; x_and_coeff *xc= b->x_coeff; x_and_coeff *prev_xc= NULL; @@ -1390,7 +1389,6 @@ static inline void unpack_coeffs(SnowContext *s, SubBand *b, SubBand * parent, i } (xc++)->x= w+1; //end marker - } } static inline void decode_subband_slice_buffered(SnowContext *s, SubBand *b, slice_buffer * sb, int start_y, int h, int save_state[1]){ |