diff options
author | James Almer <jamrial@gmail.com> | 2017-01-07 19:04:39 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-01-12 22:53:04 -0300 |
commit | 5ac1dd8e231987c022a860c6b1961b038a84b613 (patch) | |
tree | 594a5e75a7b36a95985fef7779071900a763266a /libavcodec/utvideo.h | |
parent | 3222786c5ad9f6ca94ca4cd80a4329a276d65aaa (diff) | |
download | ffmpeg-5ac1dd8e231987c022a860c6b1961b038a84b613.tar.gz |
lossless_videodsp: move shared functions from huffyuvdsp
Several codecs other than huffyuv use them.
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/utvideo.h')
-rw-r--r-- | libavcodec/utvideo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/utvideo.h b/libavcodec/utvideo.h index 0d1086594a..3b2fe5fec5 100644 --- a/libavcodec/utvideo.h +++ b/libavcodec/utvideo.h @@ -30,8 +30,8 @@ #include "libavutil/common.h" #include "avcodec.h" #include "bswapdsp.h" -#include "huffyuvdsp.h" #include "huffyuvencdsp.h" +#include "lossless_videodsp.h" enum { PRED_NONE = 0, @@ -70,8 +70,8 @@ typedef struct UtvideoContext { const AVClass *class; AVCodecContext *avctx; BswapDSPContext bdsp; - HuffYUVDSPContext hdspdec; HuffYUVEncDSPContext hdsp; + LLVidDSPContext llviddsp; uint32_t frame_info_size, flags, frame_info; int planes; |