diff --git a/media/libaah_rtp/aah_rx_player_substream.cpp b/media/libaah_rtp/aah_rx_player_substream.cpp index 9ee8f50e18927..0239e3993d7d8 100644 --- a/media/libaah_rtp/aah_rx_player_substream.cpp +++ b/media/libaah_rtp/aah_rx_player_substream.cpp @@ -200,7 +200,8 @@ void AAH_RXPlayer::Substream::processPayloadStart(uint8_t* buf, if (ts_valid) { uint32_t ts_upper = U32_AT(buf + parse_offset); parse_offset += 4; - ts = (static_cast(ts_upper) << 32) | ts_lower; + ts = (static_cast(ts_upper) << 32) | + static_cast(ts_lower); } // Check the flags to see if there is another 24 bytes of timestamp