diff options
author | Anton Khirnov <anton@khirnov.net> | 2024-07-08 12:22:57 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2024-08-01 10:09:26 +0200 |
commit | a411fc5a84367b679de38ad07adb0ef351ca35d8 (patch) | |
tree | 5789df77a7f0b6f2de27749c2b0d0a1452b15078 /libavcodec/ffv1.h | |
parent | 4b9f7c7e3a9568a1982a6618c0ab77a3695675c1 (diff) | |
download | ffmpeg-a411fc5a84367b679de38ad07adb0ef351ca35d8.tar.gz |
lavc/ffv1: drop redundant PlaneContext.quant_table
It is a copy of FFV1Context.quant_tables[quant_table_index].
Diffstat (limited to 'libavcodec/ffv1.h')
-rw-r--r-- | libavcodec/ffv1.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/ffv1.h b/libavcodec/ffv1.h index 4d57172d5b..a87c2d2a36 100644 --- a/libavcodec/ffv1.h +++ b/libavcodec/ffv1.h @@ -59,7 +59,6 @@ typedef struct VlcState { } VlcState; typedef struct PlaneContext { - int16_t quant_table[MAX_CONTEXT_INPUTS][256]; int quant_table_index; int context_count; uint8_t (*state)[CONTEXT_SIZE]; |