diff options
author | Paul B Mahol <onemda@gmail.com> | 2017-06-26 11:29:02 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2017-06-26 20:11:58 +0200 |
commit | 3594788b713e76449eda0bc9d64b38258c86a594 (patch) | |
tree | 476fb46f7231d6b559a6d58e103aa746c2d548f6 /libavcodec/utvideo.h | |
parent | e9510dc0328437f899513e53e81efcb330b2eb5a (diff) | |
download | ffmpeg-3594788b713e76449eda0bc9d64b38258c86a594.tar.gz |
avcodec/utvideodec: decode to GBR(A)P
This is actually internal utvideo format.
Allows to make use of SIMD for median prediction for rgb(a) formats,
thus speeding up decoding.
Simplifies code, eases further developement and maintenance.
Update FATE because of pixel format switch.
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/utvideo.h')
-rw-r--r-- | libavcodec/utvideo.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/utvideo.h b/libavcodec/utvideo.h index 1d708658f5..9559c831fe 100644 --- a/libavcodec/utvideo.h +++ b/libavcodec/utvideo.h @@ -63,9 +63,6 @@ enum { /* Mapping of libavcodec prediction modes to Ut Video's */ extern const int ff_ut_pred_order[5]; -/* Order of RGB(A) planes in Ut Video */ -extern const int ff_ut_rgb_order[4]; - typedef struct UtvideoContext { const AVClass *class; AVCodecContext *avctx; |