summaryrefslogtreecommitdiff
path: root/libavcodec/dsputil.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-04-03 20:09:58 +0200
committerDiego Biurrun <diego@biurrun.de>2013-04-05 12:24:28 +0200
commited16c2dbf47cdd7c48825b4da6e7036698e5dde1 (patch)
treebb63c74b7e0d32b565877983b7383bde76219793 /libavcodec/dsputil.h
parentae35d91d44c5e676af3d146bf8d05b241c467675 (diff)
h261: Remove H.261 loop filter from dsputil
There is no arch-optimized version of the H.261 loop filter and there likely will never be, so the dsputil overhead does not give any benefit.
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r--libavcodec/dsputil.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h
index ce4469dc5c..ca418fe0b0 100644
--- a/libavcodec/dsputil.h
+++ b/libavcodec/dsputil.h
@@ -277,8 +277,6 @@ typedef struct DSPContext {
void (*h263_v_loop_filter)(uint8_t *src, int stride, int qscale);
void (*h263_h_loop_filter)(uint8_t *src, int stride, int qscale);
- void (*h261_loop_filter)(uint8_t *src, int stride);
-
/* assume len is a multiple of 8, and arrays are 16-byte aligned */
void (*vector_clipf)(float *dst /* align 16 */, const float *src /* align 16 */, float min, float max, int len /* align 16 */);