summaryrefslogtreecommitdiff
path: root/libavcodec/h264.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-02-20 11:14:08 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-02-20 11:17:32 +0100
commit088f20a33251502851958a2b5468dbe07fbf3ff6 (patch)
tree3f1352e9e2824d5a9a2cfd7989cd5c5ceb577086 /libavcodec/h264.c
parent536d1ed7934d2c9c818dd833e1058eaab479d51d (diff)
parent2ed008204d5467be03a0a3af1e293b2f7038d0a0 (diff)
Merge commit '2ed008204d5467be03a0a3af1e293b2f7038d0a0'
* commit '2ed008204d5467be03a0a3af1e293b2f7038d0a0': h264: Add add_pixels4/8() to h264dsp, and remove add_pixels4 from dsputil Conflicts: libavcodec/dsputil.c libavcodec/h264.c libavcodec/h264_mb_template.c libavcodec/h264addpx_template.c libavcodec/h264dsp.c libavcodec/h264dsp.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r--libavcodec/h264.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index ec709760e4..e854ded6c9 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -2216,7 +2216,7 @@ static av_always_inline void hl_decode_mb_predict_luma(H264Context *h,
} else {
if (transform_bypass) {
idct_dc_add =
- idct_add = h->h264dsp.h264_add_pixels4_clear;
+ idct_add = h->h264dsp.h264_add_pixels4_clear;
} else {
idct_dc_add = h->h264dsp.h264_idct_dc_add;
idct_add = h->h264dsp.h264_idct_add;