summaryrefslogtreecommitdiff
path: root/libavformat/aviobuf.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2010-07-20 09:58:30 +0000
committerMartin Storsjö <martin@martin.st>2010-07-20 09:58:30 +0000
commitaff4137d5f29d0ea1382520a9143527814b45072 (patch)
tree7b4c8963ca3ec8bcfe1cb438fbd0b89cb4c83e9b /libavformat/aviobuf.c
parent2d91366cc21cc2d0496d3d3255c151d843b2da7f (diff)
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/aviobuf.c')
-rw-r--r--libavformat/aviobuf.c2
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;