diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-01-12 21:17:26 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-01-12 21:17:26 +0000 |
commit | 2bedc0e85499c6d05c230626e22fa9d0c2e511e6 (patch) | |
tree | a8a66fb962271b5e225b1c9e0658a740121913da /libavcodec/svq3.c | |
parent | ea6f00c448beb212c80ebc7d4555a8aa7160fdb9 (diff) | |
download | ffmpeg-2bedc0e85499c6d05c230626e22fa9d0c2e511e6.tar.gz |
Move check_intra4x4_pred_mode() back from h264.h to h264.c, the function is just
called once per MB in worst case and doesnt seem to benefit from static inline.
Actually the code might be a hair faster now (0.1% according to my benchmark but
this could be random noise)
Originally committed as revision 21173 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/svq3.c')
-rw-r--r-- | libavcodec/svq3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c index 6cc170355c..af9c40d517 100644 --- a/libavcodec/svq3.c +++ b/libavcodec/svq3.c @@ -589,7 +589,7 @@ static int svq3_decode_mb(H264Context *h, unsigned int mb_type) ff_h264_write_back_intra_pred_mode(h); if (mb_type == 8) { - check_intra4x4_pred_mode(h); + ff_h264_check_intra4x4_pred_mode(h); h->top_samples_available = (s->mb_y == 0) ? 0x33FF : 0xFFFF; h->left_samples_available = (s->mb_x == 0) ? 0x5F5F : 0xFFFF; |