[FFmpeg-soc] [soc]: r406 - rv40/rv40.c
kostya
subversion at mplayerhq.hu
Sat Jul 14 18:41:40 CEST 2007
Author: kostya
Date: Sat Jul 14 18:41:39 2007
New Revision: 406
Log:
Forgot to apply block offset before dequantizing
Modified:
rv40/rv40.c
Modified: rv40/rv40.c
==============================================================================
--- rv40/rv40.c (original)
+++ rv40/rv40.c Sat Jul 14 18:41:39 2007
@@ -392,6 +392,7 @@ static inline void rv40_dequant4x4(DCTEL
{
int i, j;
+ block += offset;
block[0] = (block[0] * Qdc + 8) >> 4;
for(i = 0; i < 4; i++)
for(j = 0; j < 4; j++)
More information about the FFmpeg-soc
mailing list