diff options
Diffstat (limited to 'lib/ffmpeg/libavformat/avformat.h')
-rw-r--r-- | lib/ffmpeg/libavformat/avformat.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/ffmpeg/libavformat/avformat.h b/lib/ffmpeg/libavformat/avformat.h index 4432d93472..dcdcbb9927 100644 --- a/lib/ffmpeg/libavformat/avformat.h +++ b/lib/ffmpeg/libavformat/avformat.h @@ -873,6 +873,13 @@ typedef struct AVStream { */ int pts_wrap_behavior; + /** + * Internal data to analyze DTS and detect faulty mpeg streams + */ + int64_t last_dts_for_order_check; + uint8_t dts_ordered; + uint8_t dts_misordered; + } AVStream; #define AV_PROGRAM_RUNNING 1 |