diff options
Diffstat (limited to 'lib/ffmpeg/libavformat/ipmovie.c')
-rw-r--r-- | lib/ffmpeg/libavformat/ipmovie.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ffmpeg/libavformat/ipmovie.c b/lib/ffmpeg/libavformat/ipmovie.c index 372a926266..6d84402cf8 100644 --- a/lib/ffmpeg/libavformat/ipmovie.c +++ b/lib/ffmpeg/libavformat/ipmovie.c @@ -271,7 +271,7 @@ static int process_ipmovie_chunk(IPMVEContext *s, ByteIOContext *pb, while ((chunk_size > 0) && (chunk_type != CHUNK_BAD)) { /* read the next chunk, wherever the file happens to be pointing */ - if (url_feof(pb)) { + if (url_feof(pb)) { chunk_type = CHUNK_EOF; break; } @@ -620,7 +620,7 @@ static int ipmovie_read_packet(AVFormatContext *s, return ret; } -AVInputFormat ipmovie_demuxer = { +AVInputFormat ff_ipmovie_demuxer = { "ipmovie", NULL_IF_CONFIG_SMALL("Interplay MVE format"), sizeof(IPMVEContext), |