diff --git a/es-core/src/components/VideoFFmpegComponent.cpp b/es-core/src/components/VideoFFmpegComponent.cpp index 3c305166a..eaf0c5e30 100644 --- a/es-core/src/components/VideoFFmpegComponent.cpp +++ b/es-core/src/components/VideoFFmpegComponent.cpp @@ -215,7 +215,8 @@ void VideoFFmpegComponent::updatePlayer() // Output any audio that has been added by the processing thread. mAudioMutex.lock(); if (mOutputAudio.size()) { - AudioManager::getInstance()->processStream(&mOutputAudio.at(0), mOutputAudio.size()); + AudioManager::getInstance()->processStream(&mOutputAudio.at(0), + static_cast(mOutputAudio.size())); mOutputAudio.clear(); } mAudioMutex.unlock();