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:
Diffstat (limited to 'decoder/LAVVideo/decoders/cuvid.cpp')
-rw-r--r--decoder/LAVVideo/decoders/cuvid.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/decoder/LAVVideo/decoders/cuvid.cpp b/decoder/LAVVideo/decoders/cuvid.cpp
index 759ead9f..f28e22a8 100644
--- a/decoder/LAVVideo/decoders/cuvid.cpp
+++ b/decoder/LAVVideo/decoders/cuvid.cpp
@@ -1115,11 +1115,11 @@ STDMETHODIMP CDecCuvid::Decode(const BYTE *buffer, int buflen, REFERENCE_TIME rt
// If we found a EOS marker, but its not at the end of the packet, then split the packet
// to be able to individually decode the frame before the EOS, and then decode the remainder
if (eosmarker && eosmarker != end) {
- Decode(buffer, (eosmarker - buffer), rtStart, rtStop, bSyncPoint, bDiscontinuity);
+ Decode(buffer, (int)(eosmarker - buffer), rtStart, rtStop, bSyncPoint, bDiscontinuity);
rtStart = rtStop = AV_NOPTS_VALUE;
pCuvidPacket.payload = eosmarker;
- pCuvidPacket.payload_size = end - eosmarker;
+ pCuvidPacket.payload_size = (int)(end - eosmarker);
} else if (eosmarker) {
m_bEndOfSequence = TRUE;
}