Commit b6371180 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/mpegenc: change assert to av_assert0

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent ddd0e23d
......@@ -948,7 +948,7 @@ retry:
return 0;
if(avail_data==0)
continue;
assert(avail_data>0);
av_assert0(avail_data>0);
if(space < s->packet_size && !ignore_constraints)
continue;
......
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