diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2012-08-01 16:13:04 -0400 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2013-01-09 14:49:07 -0500 |
commit | 06deaf8ad33a996c8ad606e29197ec9712960067 (patch) | |
tree | e3fd050e29e238a1b332a72b3973b71f898aaec4 /libavformat/idcin.c | |
parent | 5d0450461ff729be5f531d333d29754155e406c5 (diff) | |
download | ffmpeg-06deaf8ad33a996c8ad606e29197ec9712960067.tar.gz |
idcin: return 0 from idcin_read_packet() on success.
This matches the AVInputFormat.read_packet() API.
Diffstat (limited to 'libavformat/idcin.c')
-rw-r--r-- | libavformat/idcin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/idcin.c b/libavformat/idcin.c index 87117eba91..b7e87a719a 100644 --- a/libavformat/idcin.c +++ b/libavformat/idcin.c @@ -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, |