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>2012-10-30 20:54:36 +0400
committerHendrik Leppkes <h.leppkes@gmail.com>2012-10-30 20:54:36 +0400
commit79ddd677545ca71a225a5f776f991a2459d578da (patch)
treecc06de1b7557be1bd4aee1f8be2253f7600208d3
parent213831b0c6f4cd17b35dd2f2632905f1154fd8d7 (diff)
Adjust deinterlacing flags for newer madVR versions.
-rw-r--r--decoder/LAVVideo/LAVVideo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/decoder/LAVVideo/LAVVideo.cpp b/decoder/LAVVideo/LAVVideo.cpp
index 717fb9c5..32d3d02a 100644
--- a/decoder/LAVVideo/LAVVideo.cpp
+++ b/decoder/LAVVideo/LAVVideo.cpp
@@ -850,7 +850,7 @@ HRESULT CLAVVideo::ReconnectOutput(int width, int height, AVRational ar, DXVA2_E
} else if (bInterlaced) {
dwInterlacedFlags = AMINTERLACE_IsInterlaced | AMINTERLACE_DisplayModeBobOrWeave;
} else {
- dwInterlacedFlags = AMINTERLACE_IsInterlaced | AMINTERLACE_DisplayModeWeaveOnly;
+ dwInterlacedFlags = 0;
}
} else {
dwInterlacedFlags = bInterlaced ? AMINTERLACE_IsInterlaced | AMINTERLACE_DisplayModeBobOrWeave : 0;