Commit 47f83030 authored by Michael Niedermayer's avatar Michael Niedermayer

lavf/aviobuf: use av_assert()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 67703d64
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
#include "libavutil/intreadwrite.h" #include "libavutil/intreadwrite.h"
#include "libavutil/log.h" #include "libavutil/log.h"
#include "libavutil/opt.h" #include "libavutil/opt.h"
#include "libavutil/avassert.h"
#include "avformat.h" #include "avformat.h"
#include "avio.h" #include "avio.h"
#include "avio_internal.h" #include "avio_internal.h"
...@@ -712,7 +713,7 @@ int ffio_set_buf_size(AVIOContext *s, int buf_size) ...@@ -712,7 +713,7 @@ int ffio_set_buf_size(AVIOContext *s, int buf_size)
static int url_resetbuf(AVIOContext *s, int flags) static int url_resetbuf(AVIOContext *s, int flags)
{ {
assert(flags == AVIO_FLAG_WRITE || flags == AVIO_FLAG_READ); av_assert1(flags == AVIO_FLAG_WRITE || flags == AVIO_FLAG_READ);
if (flags & AVIO_FLAG_WRITE) { if (flags & AVIO_FLAG_WRITE) {
s->buf_end = s->buffer + s->buffer_size; s->buf_end = s->buffer + s->buffer_size;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment