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:
-rw-r--r--decoder/LAVVideo/LAVVideo.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/decoder/LAVVideo/LAVVideo.cpp b/decoder/LAVVideo/LAVVideo.cpp
index d280ca45..ebbe5af4 100644
--- a/decoder/LAVVideo/LAVVideo.cpp
+++ b/decoder/LAVVideo/LAVVideo.cpp
@@ -1028,8 +1028,12 @@ HRESULT CLAVVideo::ReconnectOutput(int width, int height, AVRational ar, DXVA2_E
#endif
DeleteMediaType(pmt);
} else { // No Stride Request? We're ok with that, too!
- //long size = pOut->GetSize();
- //pBIH->biWidth = size / abs(pBIH->biHeight) * 8 / pBIH->biBitCount;
+ // The overlay mixer doesn't ask for a stride, but it needs one anyway
+ // It'll provide a buffer just in the right size, so we can calculate this here.
+ if (m_bOverlayMixer) {
+ long size = pOut->GetSize();
+ pBIH->biWidth = size / abs(pBIH->biHeight) * 8 / pBIH->biBitCount;
+ }
DbgLog((LOG_TRACE, 10, L"-> We did not get a stride request, using width %d for stride", pBIH->biWidth));
m_bSendMediaType = TRUE;
m_pOutput->SetMediaType(&mt);