Commit 06deaf8a authored by Justin Ruggles's avatar Justin Ruggles

idcin: return 0 from idcin_read_packet() on success.

This matches the AVInputFormat.read_packet() API.
parent 5d045046
...@@ -341,7 +341,7 @@ static int idcin_read_packet(AVFormatContext *s, ...@@ -341,7 +341,7 @@ static int idcin_read_packet(AVFormatContext *s,
if (idcin->audio_present) if (idcin->audio_present)
idcin->next_chunk_is_video ^= 1; idcin->next_chunk_is_video ^= 1;
return ret; return 0;
} }
static int idcin_read_seek(AVFormatContext *s, int stream_index, static int idcin_read_seek(AVFormatContext *s, int stream_index,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment