summaryrefslogtreecommitdiff
path: root/libavcodec/blockdsp.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2016-08-08 21:47:20 +0200
committerAnton Khirnov <anton@khirnov.net>2016-09-22 09:47:52 +0200
commiteea9857bfd6925d0c34382c00b971ee6df12ad44 (patch)
tree3c0ecc889c05a71709aca367a51ca4b75d8aa277 /libavcodec/blockdsp.h
parent340f12f71207513672b5165d810cb6c8622c6b21 (diff)
blockdsp: drop the high_bit_depth parameter
It has no effect, since the code is supposed to operate the same way for any bit depth.
Diffstat (limited to 'libavcodec/blockdsp.h')
-rw-r--r--libavcodec/blockdsp.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/blockdsp.h b/libavcodec/blockdsp.h
index 32c671cf5a..5b5639f5a6 100644
--- a/libavcodec/blockdsp.h
+++ b/libavcodec/blockdsp.h
@@ -40,13 +40,13 @@ typedef struct BlockDSPContext {
void ff_blockdsp_init(BlockDSPContext *c, AVCodecContext *avctx);
-void ff_blockdsp_init_arm(BlockDSPContext *c, unsigned high_bit_depth);
-void ff_blockdsp_init_ppc(BlockDSPContext *c, unsigned high_bit_depth);
+void ff_blockdsp_init_arm(BlockDSPContext *c);
+void ff_blockdsp_init_ppc(BlockDSPContext *c);
#if FF_API_XVMC
-void ff_blockdsp_init_x86(BlockDSPContext *c, unsigned high_bit_depth,
+void ff_blockdsp_init_x86(BlockDSPContext *c,
AVCodecContext *avctx);
#else
-void ff_blockdsp_init_x86(BlockDSPContext *c, unsigned high_bit_depth);
+void ff_blockdsp_init_x86(BlockDSPContext *c);
#endif /* FF_API_XVMC */
#endif /* AVCODEC_BLOCKDSP_H */