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>2013-04-12 20:18:54 +0400
committerHendrik Leppkes <h.leppkes@gmail.com>2013-04-12 20:18:54 +0400
commit207a58b1d768da6c119b7a3539114dcb6a42d2fe (patch)
treefcba40808d8522873d1519505796a5754c003c73 /decoder
parentd8fc2f1dc4bc25455d512559d76a0ef5d96654aa (diff)
avcodec: don't sync to the process thread, even if multi-threaded
Diffstat (limited to 'decoder')
-rw-r--r--decoder/LAVVideo/decoders/avcodec.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/decoder/LAVVideo/decoders/avcodec.h b/decoder/LAVVideo/decoders/avcodec.h
index c608ca98..09c37bf5 100644
--- a/decoder/LAVVideo/decoders/avcodec.h
+++ b/decoder/LAVVideo/decoders/avcodec.h
@@ -47,7 +47,6 @@ public:
STDMETHODIMP_(BOOL) IsInterlaced();
STDMETHODIMP_(const WCHAR*) GetDecoderName() { return L"avcodec"; }
STDMETHODIMP HasThreadSafeBuffers() { return S_OK; }
- STDMETHODIMP SyncToProcessThread() { return m_pAVCtx && m_pAVCtx->thread_count > 1 ? S_OK : S_FALSE; }
// CDecBase
STDMETHODIMP Init();