[warnings] fix redundant casts

This commit is contained in:
akallabeth
2024-08-29 11:11:11 +02:00
parent 91cb77a85e
commit 9c9d74e920
73 changed files with 170 additions and 176 deletions

View File

@@ -583,10 +583,9 @@ static BOOL tsmf_sample_playback(TSMF_SAMPLE* sample)
if (temp_stream->major_type == TSMF_MAJOR_TYPE_AUDIO)
{
UINT64 video_time =
(UINT64)stream->decoder->GetRunningTime(stream->decoder);
UINT64 video_time = stream->decoder->GetRunningTime(stream->decoder);
UINT64 audio_time =
(UINT64)temp_stream->decoder->GetRunningTime(temp_stream->decoder);
temp_stream->decoder->GetRunningTime(temp_stream->decoder);
UINT64 max_adjust = VIDEO_ADJUST_MAX;
if (video_time < audio_time)