[FFmpeg-soc] [soc]: r694 - dirac/libavcodec/dirac.c
marco
subversion at mplayerhq.hu
Sat Aug 11 21:51:42 CEST 2007
Author: marco
Date: Sat Aug 11 21:51:42 2007
New Revision: 694
Log:
fix typo
Modified:
dirac/libavcodec/dirac.c
Modified: dirac/libavcodec/dirac.c
==============================================================================
--- dirac/libavcodec/dirac.c (original)
+++ dirac/libavcodec/dirac.c Sat Aug 11 21:51:42 2007
@@ -1662,9 +1662,9 @@ START_TIMER
/* Vertical synthesis: Lifting stage 1. */
synthline = synth;
for (x = 0; x < synth_width; x++) {
- synthline[x] -= synthline[synth_width + x]
- + synthline[synth_width + x]
- + 2) >> 2;
+ synthline[x] -= (synthline[synth_width + x]
+ + synthline[synth_width + x]
+ + 2) >> 2;
}
synthline = synth + (synth_width << 1);
for (y = 1; y < height - 1; y++) {
More information about the FFmpeg-soc
mailing list