summaryrefslogtreecommitdiff
path: root/libavcodec/dsputil.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2014-01-07 23:51:08 +0100
committerDiego Biurrun <diego@biurrun.de>2014-03-13 08:10:52 -0700
commit0a8f91b1fbc1b627d8db8c734c812beb32102936 (patch)
treed5c89a66b1a7e5098321fdd406ccde502371b2ec /libavcodec/dsputil.c
parent55519926ef855c671d084ccc151056de9e3d3a77 (diff)
dsputil: Remove disabled avg_no_rnd_qpel leftovers
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r--libavcodec/dsputil.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c
index 8dbb18c867..ab02cdf4df 100644
--- a/libavcodec/dsputil.c
+++ b/libavcodec/dsputil.c
@@ -1258,9 +1258,8 @@ static void OPNAME ## qpel16_mc22_c(uint8_t *dst, uint8_t *src, ptrdiff_t stride
QPEL_MC(0, put_ , _ , op_put)
QPEL_MC(1, put_no_rnd_, _no_rnd_, op_put_no_rnd)
QPEL_MC(0, avg_ , _ , op_avg)
-//QPEL_MC(1, avg_no_rnd , _ , op_avg)
+
#undef op_avg
-#undef op_avg_no_rnd
#undef op_put
#undef op_put_no_rnd
@@ -2527,13 +2526,11 @@ av_cold void ff_dsputil_init(DSPContext* c, AVCodecContext *avctx)
dspfunc(put_no_rnd_qpel, 0, 16);
dspfunc(avg_qpel, 0, 16);
- /* dspfunc(avg_no_rnd_qpel, 0, 16); */
dspfunc(put_qpel, 1, 8);
dspfunc(put_no_rnd_qpel, 1, 8);
dspfunc(avg_qpel, 1, 8);
- /* dspfunc(avg_no_rnd_qpel, 1, 8); */
#undef dspfunc