diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-05-05 12:44:20 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-05-05 12:44:20 +0200 |
commit | 7ac5c38ec5baeea6ad647ccc9bb7e97564c50ec2 (patch) | |
tree | 742502e63561561add0f4e236742e64e785a286f /libavformat/internal.h | |
parent | 36993527dd3db4d0209cc7b37dc0f80b0fe65a71 (diff) | |
download | ffmpeg-7ac5c38ec5baeea6ad647ccc9bb7e97564c50ec2.tar.gz |
avformat/mux: Add avoid_negative_ts_use_pts
This allows using pts instead of dts for negative TS avoidance
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/internal.h')
-rw-r--r-- | libavformat/internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/internal.h b/libavformat/internal.h index 76ffcc517e..5dacb45133 100644 --- a/libavformat/internal.h +++ b/libavformat/internal.h @@ -97,6 +97,8 @@ struct AVFormatInternal { AVRational offset_timebase; int inject_global_side_data; + + int avoid_negative_ts_use_pts; }; #ifdef __GNUC__ |