Signed minus unsigned is unsigned...

This commit is contained in:
Bartosz Taudul 2019-08-26 19:09:12 +02:00
parent eb78ecd0fd
commit f76f38777e

View File

@ -3338,7 +3338,7 @@ void Worker::ProcessFrameImage( const QueueFrameImage& ev )
assert( it != m_pendingFrameImageData.end() ); assert( it != m_pendingFrameImageData.end() );
auto& frames = m_data.framesBase->frames; auto& frames = m_data.framesBase->frames;
const auto fidx = int64_t( ev.frame ) - m_data.frameOffset + 1; const auto fidx = int64_t( ev.frame ) - int64_t( m_data.frameOffset ) + 1;
if( m_onDemand && fidx <= 1 ) if( m_onDemand && fidx <= 1 )
{ {
m_pendingFrameImageData.erase( it ); m_pendingFrameImageData.erase( it );
@ -3354,7 +3354,7 @@ void Worker::ProcessFrameImage( const QueueFrameImage& ev )
fi->ptr = PackFrameImage( (const char*)it->second, ev.w, ev.h, fi->csz ); fi->ptr = PackFrameImage( (const char*)it->second, ev.w, ev.h, fi->csz );
fi->w = ev.w; fi->w = ev.w;
fi->h = ev.h; fi->h = ev.h;
fi->frameRef = fidx; fi->frameRef = uint32_t( fidx );
fi->flip = ev.flip; fi->flip = ev.flip;
const auto idx = m_data.frameImage.size(); const auto idx = m_data.frameImage.size();