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

github.com/mpc-hc/LAVFilters.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2015-02-23 15:12:23 +0300
committerHendrik Leppkes <h.leppkes@gmail.com>2015-02-23 15:12:23 +0300
commit5457a906ad81a930cc838e44cef3c43d7f7c9e2d (patch)
treea46cdc7d4c434a98e438ffd734b3de06174a414b /demuxer/Demuxers/LAVFDemuxer.cpp
parent7d4030f9687b2e9b5d53cfc8fd02905ec2488ec7 (diff)
Increase anaylze duration for mpeg-ts files
Diffstat (limited to 'demuxer/Demuxers/LAVFDemuxer.cpp')
-rw-r--r--demuxer/Demuxers/LAVFDemuxer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/demuxer/Demuxers/LAVFDemuxer.cpp b/demuxer/Demuxers/LAVFDemuxer.cpp
index ee2cdd61..c58e321c 100644
--- a/demuxer/Demuxers/LAVFDemuxer.cpp
+++ b/demuxer/Demuxers/LAVFDemuxer.cpp
@@ -504,7 +504,7 @@ STDMETHODIMP CLAVFDemuxer::InitAVFormat(LPCOLESTR pszFileName, BOOL bForce)
av_opt_set_int(m_avFormat, "analyzeduration", 7500000, 0);
// And increase it for mpeg-ts/ps files
if (m_bMPEGTS || m_bMPEGPS) {
- av_opt_set_int(m_avFormat, "analyzeduration", 15000000, 0);
+ av_opt_set_int(m_avFormat, "analyzeduration", 30000000, 0);
av_opt_set_int(m_avFormat, "probesize", 75000000, 0);
}
}