diff options
author | John Stebbins <stebbins@jetheaddev.com> | 2013-10-11 09:51:50 -0700 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-10-31 20:14:14 +0100 |
commit | 28096e0a806e57376541e6222d315619906e3c55 (patch) | |
tree | a3d2c34efc7bfc08e00314c010e1f20fc7cf84cf /libavcodec/mpegvideo.h | |
parent | 9af7a8523a6bb517834ebed36093bdab11a8b38e (diff) | |
download | ffmpeg-28096e0a806e57376541e6222d315619906e3c55.tar.gz |
h264: wait for initial complete frame before outputing frames
This can be optionally disabled whith the "output_corrupt" flags
option. When in "output_corrupt" mode, incomplete frames are
signalled through AVFrame.flags FRAME_FLAG_INCOMPLETE_FRAME.
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index 9f222c5773..78792cf9a1 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -172,6 +172,7 @@ typedef struct Picture{ int reference; int shared; + int recovered; ///< Picture at IDR or recovery point + recovery count } Picture; /** |