Commit f2a7e1a6 authored by Michael Niedermayer's avatar Michael Niedermayer

mux: change 1 assert->av_assert1()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 2714e841
...@@ -560,7 +560,7 @@ int ff_interleave_add_packet(AVFormatContext *s, AVPacket *pkt, ...@@ -560,7 +560,7 @@ int ff_interleave_add_packet(AVFormatContext *s, AVPacket *pkt,
next_point = &(s->packet_buffer_end->next); next_point = &(s->packet_buffer_end->next);
} }
} }
assert(!*next_point); av_assert1(!*next_point);
s->packet_buffer_end = this_pktl; s->packet_buffer_end = this_pktl;
next_non_null: next_non_null:
......
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