This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
merge
Originally committed as revision 10685 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Baptiste Coudurier
18 years ago
parent
a417d041f0
commit
5e301bbb70
1 changed files
with
1 additions
and
2 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-2
libavcodec/dnxhddec.c
+ 1
- 2
libavcodec/dnxhddec.c
View File
@@ -201,9 +201,8 @@ static void dnxhd_decode_dct_block(DNXHDContext *ctx, DCTELEM *block, int n, int
if (weigth_matrix[i] != 32) // FIXME 10bit
if (weigth_matrix[i] != 32) // FIXME 10bit
level += 32;
level += 32;
level >>= 6;
level >>= 6;
level = (level^sign) - sign;
//av_log(NULL, AV_LOG_DEBUG, "i %d, j %d, end level %d\n", i, j, level);
//av_log(NULL, AV_LOG_DEBUG, "i %d, j %d, end level %d\n", i, j, level);
block[j] = level;
block[j] =
(
level
^sign) - sign
;
}
}
}
}
Write
Preview
Loading…
Cancel
Save