libeplayer3: fix signed/unsigend comparison warning

This commit is contained in:
Stefan Seyfried
2016-01-08 17:40:50 +01:00
parent 635ce08a89
commit be9ebb472a

View File

@@ -481,7 +481,7 @@ bool Input::Init(const char *filename)
/* only call avformat_find_stream_info if no AAC
* stream is present to speed up playback start
* TODO: do we need avformat_find_stream_info at all? */
for (int i = 0; i < avfc->nb_streams; i++) {
for (unsigned int i = 0; i < avfc->nb_streams; i++) {
if (avfc->streams[i]->codec->codec_id == AV_CODEC_ID_AAC)
find_info = false;
}