mirror of
https://github.com/tuxbox-neutrino/libstb-hal.git
synced 2025-08-26 23:13:16 +02:00
libeplayer3: fix signed/unsigend comparison warning
This commit is contained in:
@@ -481,7 +481,7 @@ bool Input::Init(const char *filename)
|
|||||||
/* only call avformat_find_stream_info if no AAC
|
/* only call avformat_find_stream_info if no AAC
|
||||||
* stream is present to speed up playback start
|
* stream is present to speed up playback start
|
||||||
* TODO: do we need avformat_find_stream_info at all? */
|
* 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)
|
if (avfc->streams[i]->codec->codec_id == AV_CODEC_ID_AAC)
|
||||||
find_info = false;
|
find_info = false;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user