diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-01-23 01:34:56 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-01-23 01:43:00 +0100 |
commit | eaacfc7dd1eaeec7e5e243f1e0ee5e8a7ff845a3 (patch) | |
tree | 9160fb7e3db89b6dbee16e902170dcb6681725a1 /libavcodec/lossless_videodsp.h | |
parent | 622d463000371467cb0365744f0c1d92b56bed52 (diff) | |
download | ffmpeg-eaacfc7dd1eaeec7e5e243f1e0ee5e8a7ff845a3.tar.gz |
avcodec/lossless_videodsp: Pass AVCodecContext to init
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/lossless_videodsp.h')
-rw-r--r-- | libavcodec/lossless_videodsp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/lossless_videodsp.h b/libavcodec/lossless_videodsp.h index e4dfca3d33..c656fa14cf 100644 --- a/libavcodec/lossless_videodsp.h +++ b/libavcodec/lossless_videodsp.h @@ -34,7 +34,7 @@ typedef struct LLVidDSPContext { int (*add_hfyu_left_prediction_int16)(uint16_t *dst, const uint16_t *src, unsigned mask, int w, int left); } LLVidDSPContext; -void ff_llviddsp_init(LLVidDSPContext *llviddsp); -void ff_llviddsp_init_x86(LLVidDSPContext *llviddsp); +void ff_llviddsp_init(LLVidDSPContext *llviddsp, AVCodecContext *avctx); +void ff_llviddsp_init_x86(LLVidDSPContext *llviddsp, AVCodecContext *avctx); #endif //AVCODEC_LOSSLESS_VIDEODSP_H |