Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-01-18 18:17:09 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-01-21 18:47:38 +0300
commitf6d14b1297c17f6bdcbcff2dff7c496520ebe32f (patch)
tree389e0275dd2c7932e9226effd20ba935bdc16a20 /libavformat/webm_chunk.c
parent92ed6ea3d7c837adba8afcd58f92482c4c9fae72 (diff)
avformat/avformat: Add AVFMT_AVOID_NEG_TS_DISABLED
And also don't use explicit constants in the movenc test. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/webm_chunk.c')
-rw-r--r--libavformat/webm_chunk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/webm_chunk.c b/libavformat/webm_chunk.c
index 24390e8e74..9348e6680a 100644
--- a/libavformat/webm_chunk.c
+++ b/libavformat/webm_chunk.c
@@ -127,7 +127,7 @@ fail:
s->avoid_negative_ts = oc->avoid_negative_ts;
ffformatcontext(s)->avoid_negative_ts_use_pts =
ffformatcontext(oc)->avoid_negative_ts_use_pts;
- oc->avoid_negative_ts = 0;
+ oc->avoid_negative_ts = AVFMT_AVOID_NEG_TS_DISABLED;
return 0;
}