diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-09-09 17:17:15 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-09-11 20:56:03 +0200 |
commit | 4130789f4f20e67ef44f8c721955c5e3bcbc1b09 (patch) | |
tree | bf63982bcb4cce037f14316eb042acf66e4f1e46 /libavcodec/vp8.h | |
parent | b3591ccdf1f364ecea1f0d4b5777d1818e2ec13e (diff) | |
download | ffmpeg-4130789f4f20e67ef44f8c721955c5e3bcbc1b09.tar.gz |
avcodec/vp8: Move fade_present from context to stack
It is only an auxiliary value used for parsing the VP7 frame header.
Reviewed-by: Peter Ross <pross@xvid.org>
Reviewed-by: Ronald S. Bultje <rsbultje@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/vp8.h')
-rw-r--r-- | libavcodec/vp8.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libavcodec/vp8.h b/libavcodec/vp8.h index 30aeb4cb06..6f29156b53 100644 --- a/libavcodec/vp8.h +++ b/libavcodec/vp8.h @@ -336,11 +336,6 @@ typedef struct VP8Context { int vp7; /** - * Fade bit present in bitstream (VP7) - */ - int fade_present; - - /** * Interframe DC prediction (VP7) * [0] VP8_FRAME_PREVIOUS * [1] VP8_FRAME_GOLDEN |