mirror of
https://github.com/cookiengineer/audacity
synced 2026-02-07 20:22:13 +01:00
Fix a couple of compiler warnings.
This commit is contained in:
@@ -433,7 +433,7 @@ streamContext *import_ffmpeg_read_next_frame(AVFormatContext* formatContext,
|
||||
}
|
||||
|
||||
// Find a stream to which this frame belongs to
|
||||
for (int i = 0; i < numStreams; i++)
|
||||
for (unsigned int i = 0; i < numStreams; i++)
|
||||
{
|
||||
if (streams[i]->m_stream->index == pkt.stream_index)
|
||||
sc = streams[i];
|
||||
|
||||
Reference in New Issue
Block a user