summaryrefslogtreecommitdiff
path: root/libavcodec/dsputil.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/dsputil.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/dsputil.c')
-rw-r--r--libavcodec/dsputil.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c
index b93851c6ae..2bcc3ee339 100644
--- a/libavcodec/dsputil.c
+++ b/libavcodec/dsputil.c
@@ -463,7 +463,6 @@ static void add_pixels8_c(uint8_t *av_restrict pixels,
}
}
-
static void add_pixels_clamped_c(const int16_t *block, uint8_t *av_restrict pixels,
int line_size)
{
@@ -2902,7 +2901,7 @@ av_cold void ff_dsputil_init(DSPContext* c, AVCodecContext *avctx)
c->get_pixels = FUNCC(get_pixels ## dct , depth);\
c->draw_edges = FUNCC(draw_edges , depth);\
c->clear_block = FUNCC(clear_block ## dct , depth);\
- c->clear_blocks = FUNCC(clear_blocks ## dct , depth)
+ c->clear_blocks = FUNCC(clear_blocks ## dct , depth);\
switch (avctx->bits_per_raw_sample) {
case 9: