diff options
author | Janne Grunau <j@jannau.net> | 2014-04-05 11:47:18 +0200 |
---|---|---|
committer | Janne Grunau <janne-libav@jannau.net> | 2014-04-06 21:18:49 +0200 |
commit | d3789eeeed3423bd1ca9dc40030a2f7a21ea5332 (patch) | |
tree | e611418f1b7b3e83aa908fc03ed77485df17843e /libavcodec/videodsp.h | |
parent | 8675bcb0addb1c7fb0b04682d1f3f95d5b8dae14 (diff) | |
download | ffmpeg-d3789eeeed3423bd1ca9dc40030a2f7a21ea5332.tar.gz |
aarch64: implement videodsp.prefetch
8% faster h264 decoding on Apple A7.
Diffstat (limited to 'libavcodec/videodsp.h')
-rw-r--r-- | libavcodec/videodsp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/videodsp.h b/libavcodec/videodsp.h index 2211c5dc22..04c012a826 100644 --- a/libavcodec/videodsp.h +++ b/libavcodec/videodsp.h @@ -68,6 +68,7 @@ typedef struct VideoDSPContext { void ff_videodsp_init(VideoDSPContext *ctx, int bpc); /* for internal use only (i.e. called by ff_videodsp_init() */ +void ff_videodsp_init_aarch64(VideoDSPContext *ctx, int bpc); void ff_videodsp_init_arm(VideoDSPContext *ctx, int bpc); void ff_videodsp_init_ppc(VideoDSPContext *ctx, int bpc); void ff_videodsp_init_x86(VideoDSPContext *ctx, int bpc); |