Commit 6c3a5d62 authored by Fei Wang's avatar Fei Wang Committed by Haihao Xiang

avcodec/cbs_av1: Add tx mode enum values

Signed-off-by: 's avatarFei Wang <fei.w.wang@intel.com>
Reviewed-by: 's avatarNeal Gompa <ngompa13@gmail.com>
parent 95b5c817
......@@ -175,6 +175,13 @@ enum {
AV1_RESTORE_SWITCHABLE = 3,
};
// TX mode (section 6.8.21)
enum {
AV1_ONLY_4X4 = 0,
AV1_TX_MODE_LARGEST = 1,
AV1_TX_MODE_SELECT = 2,
};
// Sequence Headers are actually unbounded because one can use
// an arbitrary number of leading zeroes when encoding via uvlc.
// The following estimate is based around using the lowest number
......
......@@ -1028,9 +1028,9 @@ static int FUNC(read_tx_mode)(CodedBitstreamContext *ctx, RWContext *rw,
int err;
if (priv->coded_lossless)
infer(tx_mode, 0);
infer(tx_mode, AV1_ONLY_4X4);
else
increment(tx_mode, 1, 2);
increment(tx_mode, AV1_TX_MODE_LARGEST, AV1_TX_MODE_SELECT);
return 0;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment