diff options
author | James Almer <jamrial@gmail.com> | 2017-01-07 23:13:48 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-01-12 22:53:04 -0300 |
commit | cf9ef839606dd50f779c395d8a277de143f7e5b2 (patch) | |
tree | 615bcdf1fc268c6ef0b3cc75273ca08aff8254bd /libavcodec/utvideo.h | |
parent | 30c1f27299d3fc2b0c0858c003066cc5e36a28af (diff) | |
download | ffmpeg-cf9ef839606dd50f779c395d8a277de143f7e5b2.tar.gz |
huffyuvencdsp: move shared functions to a new lossless_videoencdsp context
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 3b2fe5fec5..68257fe909 100644 --- a/libavcodec/utvideo.h +++ b/libavcodec/utvideo.h @@ -30,8 +30,8 @@ #include "libavutil/common.h" #include "avcodec.h" #include "bswapdsp.h" -#include "huffyuvencdsp.h" #include "lossless_videodsp.h" +#include "lossless_videoencdsp.h" enum { PRED_NONE = 0, @@ -70,8 +70,8 @@ typedef struct UtvideoContext { const AVClass *class; AVCodecContext *avctx; BswapDSPContext bdsp; - HuffYUVEncDSPContext hdsp; LLVidDSPContext llviddsp; + LLVidEncDSPContext llvidencdsp; uint32_t frame_info_size, flags, frame_info; int planes; |