Commit e1b82719 authored by James Almer's avatar James Almer

avfilter/framequeue: add missing check for ASSERT_LEVEL

Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
parent 94eb600f
......@@ -33,7 +33,7 @@ void ff_framequeue_global_init(FFFrameQueueGlobal *fqg)
static void check_consistency(FFFrameQueue *fq)
{
#if ASSERT_LEVEL >= 2
#if defined(ASSERT_LEVEL) && ASSERT_LEVEL >= 2
uint64_t nb_samples = 0;
size_t i;
......
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