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-01-19 19:20:12 +0300
committerHendrik Leppkes <h.leppkes@gmail.com>2015-01-19 19:20:12 +0300
commit1a05aba22ec7c80534ab5b258e7d7c14dc8f8d9d (patch)
treee9717f07011218ccfb4ced9d3b66d11a7a982bc2 /decoder
parent8d6e48bb037923df588320fbc509c5d1e188f18e (diff)
Remove error_concealment flag, it sets the default values.
Diffstat (limited to 'decoder')
-rw-r--r--decoder/LAVVideo/decoders/avcodec.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/decoder/LAVVideo/decoders/avcodec.cpp b/decoder/LAVVideo/decoders/avcodec.cpp
index 792e5e7e..bf72aa27 100644
--- a/decoder/LAVVideo/decoders/avcodec.cpp
+++ b/decoder/LAVVideo/decoders/avcodec.cpp
@@ -344,7 +344,6 @@ STDMETHODIMP CDecAvcodec::InitDecoder(AVCodecID codec, const CMediaType *pmt)
m_pAVCtx->coded_width = pBMI->biWidth;
m_pAVCtx->coded_height = abs(pBMI->biHeight);
m_pAVCtx->bits_per_coded_sample = pBMI->biBitCount;
- m_pAVCtx->error_concealment = FF_EC_GUESS_MVS | FF_EC_DEBLOCK;
m_pAVCtx->err_recognition = 0;
m_pAVCtx->workaround_bugs = FF_BUG_AUTODETECT | FF_BUG_X264_LOSSLESS;
m_pAVCtx->refcounted_frames = 1;