diff options
author | Anton Khirnov <anton@khirnov.net> | 2024-07-10 17:25:54 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2024-08-01 10:09:26 +0200 |
commit | d44812f7cf8994ccaf7ccf309c958876688dcf79 (patch) | |
tree | 272a691e364e54427d6ce9577013bdb0c622e580 /libavcodec/ffv1.h | |
parent | 2b21cdff6ebf8e65b0ff08a6e591a13236c00e37 (diff) | |
download | ffmpeg-d44812f7cf8994ccaf7ccf309c958876688dcf79.tar.gz |
lavc/ffv1dec: stop using per-slice FFV1Context
All remaining accesses to them are for fields that have the same value
in the main encoder context.
Drop now-unused FFV1Context.slice_contexts.
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 c4803654f2..9d79219921 100644 --- a/libavcodec/ffv1.h +++ b/libavcodec/ffv1.h @@ -141,7 +141,6 @@ typedef struct FFV1Context { int gob_count; int quant_table_count; - struct FFV1Context *slice_context[MAX_SLICES]; int slice_count; int max_slice_count; int num_v_slices; |