mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/mmaldec: Use av_assert0() instead of assert()
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
329a0e419e
commit
c0152ebb9e
@ -165,7 +165,7 @@ static void ffmmal_stop_decoder(AVCodecContext *avctx)
|
||||
}
|
||||
ctx->waiting_buffers_tail = NULL;
|
||||
|
||||
assert(avpriv_atomic_get(&ctx->packets_buffered) == 0);
|
||||
av_assert0(avpriv_atomic_get(&ctx->packets_buffered) == 0);
|
||||
|
||||
ctx->frames_output = ctx->eos_received = ctx->eos_sent = ctx->packets_sent = ctx->extradata_sent = 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user