Commit 56f0fe6b authored by Michael Niedermayer's avatar Michael Niedermayer

swr: Fix ASSERT_LEVEL warning

Found-by: cehoyos
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 653bf3c5
...@@ -693,7 +693,7 @@ int attribute_align_arg swr_convert(struct SwrContext *s, uint8_t *out_arg[SWR_C ...@@ -693,7 +693,7 @@ int attribute_align_arg swr_convert(struct SwrContext *s, uint8_t *out_arg[SWR_C
av_log(s, AV_LOG_ERROR, "Context has not been initialized\n"); av_log(s, AV_LOG_ERROR, "Context has not been initialized\n");
return AVERROR(EINVAL); return AVERROR(EINVAL);
} }
#if ASSERT_LEVEL >1 #if defined(ASSERT_LEVEL) && ASSERT_LEVEL >1
max_output = swr_get_out_samples(s, in_count); max_output = swr_get_out_samples(s, in_count);
#endif #endif
......
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