projects
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2a5a9c2
)
Remove useless IS_8x8DCT check i forgot, spotted by dark shikari.
author
Michael Niedermayer
<michaelni@gmx.at>
Thu, 18 Dec 2008 11:17:12 +0000
(11:17 +0000)
committer
Michael Niedermayer
<michaelni@gmx.at>
Thu, 18 Dec 2008 11:17:12 +0000
(11:17 +0000)
Originally committed as revision 16215 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/h264.c
patch
|
blob
|
blame
|
history
diff --git
a/libavcodec/h264.c
b/libavcodec/h264.c
index
3b5e0b6
..
40351b6
100644
(file)
--- a/
libavcodec/h264.c
+++ b/
libavcodec/h264.c
@@
-2434,7
+2434,7
@@
static av_always_inline void hl_decode_mb_internal(H264Context *h, int simple){
if(transform_bypass){
idct_dc_add =
idct_add = s->dsp.add_pixels8;
- }else
if(IS_8x8DCT(mb_type))
{
+ }else{
idct_dc_add = s->dsp.h264_idct8_dc_add;
idct_add = s->dsp.h264_idct8_add;
}