[FFmpeg-soc] [soc]: r3147 - mlp/mlpenc.c
ramiro
subversion at mplayerhq.hu
Sun Aug 10 16:43:19 CEST 2008
Author: ramiro
Date: Sun Aug 10 16:43:18 2008
New Revision: 3147
Log:
Check for increase in bitcount only for 3 offsets.
Modified:
mlp/mlpenc.c
Modified: mlp/mlpenc.c
==============================================================================
--- mlp/mlpenc.c (original)
+++ mlp/mlpenc.c Sun Aug 10 16:43:18 2008
@@ -813,7 +813,7 @@ static inline void codebook_bits(MLPEnco
*bo = temp_bo;
is_greater = 0;
- } else if (++is_greater >= 5)
+ } else if (++is_greater >= 3)
break;
previous_count = temp_bo.bitcount;
More information about the FFmpeg-soc
mailing list