diff options
author | Paul B Mahol <onemda@gmail.com> | 2017-06-26 21:31:12 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2017-06-27 09:54:10 +0200 |
commit | 4ed7c2bbc3d04d5410433fd7038f076538e4a944 (patch) | |
tree | 083a62e72a7e7a137b94c5ef8a0864399d17e35b /libavcodec/utvideo.h | |
parent | 3594788b713e76449eda0bc9d64b38258c86a594 (diff) | |
download | ffmpeg-4ed7c2bbc3d04d5410433fd7038f076538e4a944.tar.gz |
avcodec/utvideodec: add SIMD for restore_rgb_planes
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/utvideo.h')
-rw-r--r-- | libavcodec/utvideo.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/utvideo.h b/libavcodec/utvideo.h index 9559c831fe..a8117851a7 100644 --- a/libavcodec/utvideo.h +++ b/libavcodec/utvideo.h @@ -30,6 +30,7 @@ #include "libavutil/common.h" #include "avcodec.h" #include "bswapdsp.h" +#include "utvideodsp.h" #include "lossless_videodsp.h" #include "lossless_videoencdsp.h" @@ -66,6 +67,7 @@ extern const int ff_ut_pred_order[5]; typedef struct UtvideoContext { const AVClass *class; AVCodecContext *avctx; + UTVideoDSPContext utdsp; BswapDSPContext bdsp; LLVidDSPContext llviddsp; LLVidEncDSPContext llvidencdsp; |