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:
authorMichael Niedermayer <michaelni@gmx.at>2012-05-30 17:55:31 +0400
committerMichael Niedermayer <michaelni@gmx.at>2012-05-30 17:55:31 +0400
commit96fe99cb11ab10240c30fb2defadd5324c619814 (patch)
treeae7bcfdde6b59f866817ad83bcffac25e38e1867 /ffmpeg.c
parent89cf5bf39a915f480cd03797366760e4e1afd493 (diff)
ffmpeg: disable autoinsertion for -async on the output side of the filtergraph.
This fixes the issue that since the last merge -async caused 2 aresample filters to be inserted users that generate funny timestamps in a filtergraph should probably manually insert a aresample filter where they need it. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 24dc225e1c..a97327b65b 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -1063,7 +1063,7 @@ static int configure_output_audio_filter(FilterGraph *fg, OutputFilter *ofilter,
pad_idx = 0; \
} while (0)
- if (audio_sync_method > 0) {
+ if (audio_sync_method > 0 && 0) {
char args[256] = {0};
av_strlcatf(args, sizeof(args), "min_comp=0.001:min_hard_comp=%f", audio_drift_threshold);