mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-15 00:44:19 +09:00
[warnings] fix redundant casts
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user