mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2025-12-24 11:52:06 +08:00
Merge commit '5169e688956be3378adb3b16a93962fe0048f1c9'
* commit '5169e688956be3378adb3b16a93962fe0048f1c9': dsputil: Propagate bit depth information to all (sub)init functions Conflicts: libavcodec/arm/dsputil_init_arm.c libavcodec/arm/dsputil_init_armv5te.c libavcodec/arm/dsputil_init_armv6.c libavcodec/arm/dsputil_init_neon.c libavcodec/dsputil.c libavcodec/dsputil.h libavcodec/ppc/dsputil_ppc.c libavcodec/x86/dsputil_init.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -355,10 +355,14 @@ int ff_check_alignment(void);
|
||||
void ff_set_cmp(DSPContext *c, me_cmp_func *cmp, int type);
|
||||
|
||||
void ff_dsputil_init_alpha(DSPContext* c, AVCodecContext *avctx);
|
||||
void ff_dsputil_init_arm(DSPContext *c, AVCodecContext *avctx);
|
||||
void ff_dsputil_init_bfin(DSPContext *c, AVCodecContext *avctx);
|
||||
void ff_dsputil_init_ppc(DSPContext *c, AVCodecContext *avctx);
|
||||
void ff_dsputil_init_x86(DSPContext *c, AVCodecContext *avctx);
|
||||
void ff_dsputil_init_arm(DSPContext *c, AVCodecContext *avctx,
|
||||
unsigned high_bit_depth);
|
||||
void ff_dsputil_init_bfin(DSPContext *c, AVCodecContext *avctx,
|
||||
unsigned high_bit_depth);
|
||||
void ff_dsputil_init_ppc(DSPContext *c, AVCodecContext *avctx,
|
||||
unsigned high_bit_depth);
|
||||
void ff_dsputil_init_x86(DSPContext *c, AVCodecContext *avctx,
|
||||
unsigned high_bit_depth);
|
||||
|
||||
void ff_dsputil_init_dwt(DSPContext *c);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user