summaryrefslogtreecommitdiffstats
path: root/libavcodec/h264dsp.c
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2013-02-18 21:03:02 -0800
committerMichael Niedermayer <michaelni@gmx.at>2013-02-19 16:25:50 +0100
commit1acd7d594c15aa491729c837ad3519d3469e620a (patch)
tree4a515aa31c7483d8a2fdfa1d4399c9a9d2b29cae /libavcodec/h264dsp.c
parenta1f1ca96b42698002920467c0aab9e636893088a (diff)
downloadffmpeg-streaming-1acd7d594c15aa491729c837ad3519d3469e620a.zip
ffmpeg-streaming-1acd7d594c15aa491729c837ad3519d3469e620a.tar.gz
h264: integrate clear_blocks calls with IDCT.
The non-intra-pcm branch in hl_decode_mb (simple, 8bpp) goes from 700 to 672 cycles, and the complete loop of decode_mb_cabac and hl_decode_mb (in the decode_slice loop) goes from 1759 to 1733 cycles on the clip tested (cathedral), i.e. almost 30 cycles per mb faster. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h264dsp.c')
-rw-r--r--libavcodec/h264dsp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h264dsp.c b/libavcodec/h264dsp.c
index bb70d4e..da9e417 100644
--- a/libavcodec/h264dsp.c
+++ b/libavcodec/h264dsp.c
@@ -66,8 +66,8 @@ void ff_h264dsp_init(H264DSPContext *c, const int bit_depth, const int chroma_fo
#define FUNC(a, depth) a ## _ ## depth ## _c
#define ADDPX_DSP(depth) \
- c->h264_add_pixels4 = FUNC(ff_h264_add_pixels4, depth);\
- c->h264_add_pixels8 = FUNC(ff_h264_add_pixels8, depth)
+ c->h264_add_pixels4_clear = FUNC(ff_h264_add_pixels4, depth);\
+ c->h264_add_pixels8_clear = FUNC(ff_h264_add_pixels8, depth)
if (bit_depth > 8 && bit_depth <= 16) {
ADDPX_DSP(16);
OpenPOWER on IntegriCloud