mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 23:15:18 +00:00
fix some warnings
This commit is contained in:
parent
c20aa2ad5f
commit
38d612e5ba
3 changed files with 5 additions and 15 deletions
|
|
@ -442,7 +442,7 @@ namespace utils
|
|||
memcpy(&data[m_size], buffer, buffer_size);
|
||||
}
|
||||
|
||||
const u32 timestamp_ms = stream->time_base.den ? (1000 * av.frame->best_effort_timestamp * stream->time_base.num) / stream->time_base.den : 0;
|
||||
const s64 timestamp_ms = stream->time_base.den ? (1000 * av.frame->best_effort_timestamp * stream->time_base.num) / stream->time_base.den : 0;
|
||||
timestamps_ms.push_back({m_size, timestamp_ms});
|
||||
m_size += buffer_size;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue