1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-11-23 21:54:53 +02:00

avfilter/asrc_afirsrc: use AVFilterContext for logging

This commit is contained in:
Niklas Haas
2025-08-11 15:27:02 +02:00
committed by Niklas Haas
parent 4cc71fb806
commit 2e8d3548e1

View File

@@ -92,7 +92,7 @@ static av_cold int init(AVFilterContext *ctx)
AudioFIRSourceContext *s = ctx->priv;
if (!(s->nb_taps & 1)) {
av_log(s, AV_LOG_WARNING, "Number of taps %d must be odd length.\n", s->nb_taps);
av_log(ctx, AV_LOG_WARNING, "Number of taps %d must be odd length.\n", s->nb_taps);
s->nb_taps |= 1;
}