diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-07-27 10:59:40 +0000 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-07-28 08:10:35 +0000 |
commit | e76f2d11970484266e67a12961f2339a5c2fccf9 (patch) | |
tree | e047a7026293f44fd373dedf26a0451723eede38 /libavcodec/hevc.h | |
parent | 4aa80808bcc2a30fcd7ce5b38594319df3a85b36 (diff) | |
download | ffmpeg-e76f2d11970484266e67a12961f2339a5c2fccf9.tar.gz |
hevc: eliminate the last element from TransformTree
Replace it by passing an additional parameter to transform_unit()
Diffstat (limited to 'libavcodec/hevc.h')
-rw-r--r-- | libavcodec/hevc.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libavcodec/hevc.h b/libavcodec/hevc.h index ad13d10a5e..96dd80d4b1 100644 --- a/libavcodec/hevc.h +++ b/libavcodec/hevc.h @@ -645,10 +645,6 @@ typedef struct PredictionUnit { uint8_t intra_pred_mode_c; } PredictionUnit; -typedef struct TransformTree { - uint8_t cbf_luma; -} TransformTree; - typedef struct TransformUnit { int cu_qp_delta; @@ -724,7 +720,6 @@ typedef struct HEVCLocalContext { GetBitContext gb; CABACContext cc; - TransformTree tt; int8_t qp_y; int8_t curr_qp_y; |