1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

idcin: return 0 from idcin_read_packet() on success.

This matches the AVInputFormat.read_packet() API.
This commit is contained in:
Justin Ruggles 2012-08-01 16:13:04 -04:00
parent 5d0450461f
commit 06deaf8ad3

View File

@ -341,7 +341,7 @@ static int idcin_read_packet(AVFormatContext *s,
if (idcin->audio_present)
idcin->next_chunk_is_video ^= 1;
return ret;
return 0;
}
static int idcin_read_seek(AVFormatContext *s, int stream_index,