diff options
author | James Almer <jamrial@gmail.com> | 2023-06-17 13:06:49 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2023-06-19 12:57:31 -0300 |
commit | f7e0af5edc9e7c1315da35a98f017cb497f65ad4 (patch) | |
tree | 26ebb1619fc9f5ae63b571d8bbaf37c05f15f991 /libavcodec/evc_parse.h | |
parent | 1e189fed7aba09e7b2198fd5460331ea9501d248 (diff) | |
download | ffmpeg-f7e0af5edc9e7c1315da35a98f017cb497f65ad4.tar.gz |
avcodec/evc_parser: stop exporting delay and gop_size
The former is a property a decoder may export, and the latter is only
used in encoding scenarios.
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/evc_parse.h')
-rw-r--r-- | libavcodec/evc_parse.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libavcodec/evc_parse.h b/libavcodec/evc_parse.h index b5462f5711..2748f8dfbf 100644 --- a/libavcodec/evc_parse.h +++ b/libavcodec/evc_parse.h @@ -117,12 +117,6 @@ typedef struct EVCParserContext { // Framerate value in the compressed bitstream AVRational framerate; - // Number of pictures in a group of pictures - int gop_size; - - // Number of frames the decoded output will be delayed relative to the encoded input - int delay; - int parsed_extradata; } EVCParserContext; |