diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-04-28 01:43:32 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-06-12 10:49:57 +0200 |
commit | 73676dd47ac36f975b430f6a60a09144357523c3 (patch) | |
tree | 21e6541dfe318d9de28c59afd4c205b34ef211ca /libavcodec/mpegpicture.h | |
parent | 99543c93ec0984d190eb81b2ec5cfd8665bc14f2 (diff) | |
download | ffmpeg-73676dd47ac36f975b430f6a60a09144357523c3.tar.gz |
avcodec/mpegpicture: Mark dummy frames as such
This will allow to avoid outputting them.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/mpegpicture.h')
-rw-r--r-- | libavcodec/mpegpicture.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mpegpicture.h b/libavcodec/mpegpicture.h index 215e7388ef..664c116a47 100644 --- a/libavcodec/mpegpicture.h +++ b/libavcodec/mpegpicture.h @@ -70,6 +70,7 @@ typedef struct Picture { /// RefStruct reference for hardware accelerator private data void *hwaccel_picture_private; + int dummy; ///< Picture is a dummy and should not be output int field_picture; ///< whether or not the picture was encoded in separate fields int b_frame_score; |