diff options
author | Martin Storsjö <martin@martin.st> | 2010-07-20 09:58:30 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2010-07-20 09:58:30 +0000 |
commit | aff4137d5f29d0ea1382520a9143527814b45072 (patch) | |
tree | 7b4c8963ca3ec8bcfe1cb438fbd0b89cb4c83e9b /libavformat | |
parent | 2d91366cc21cc2d0496d3d3255c151d843b2da7f (diff) | |
download | ffmpeg-aff4137d5f29d0ea1382520a9143527814b45072.tar.gz |
Remove an assert that was no longer correct nor relevant
Originally committed as revision 24344 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/aviobuf.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c index f311d51bd2..31ce64e581 100644 --- a/libavformat/aviobuf.c +++ b/libavformat/aviobuf.c @@ -328,8 +328,6 @@ static void fill_buffer(ByteIOContext *s) int len= s->buffer_size - (dst - s->buffer); int max_buffer_size = s->max_packet_size ? s->max_packet_size : IO_BUFFER_SIZE; - assert(s->buf_ptr == s->buf_end); - /* no need to do anything if EOF already reached */ if (s->eof_reached) return; |