1
0
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:
v.audacity
2012-07-16 23:32:54 +00:00
parent 5578721c56
commit 8bdcc670fe
2 changed files with 6 additions and 11 deletions

View File

@@ -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];