mirror of
https://github.com/librempeg/librempeg
synced 2024-11-22 09:02:20 +00:00
avfilter/af_compand: remove pointless indirection
This commit is contained in:
parent
73dca59612
commit
cdf9f15506
@ -252,10 +252,8 @@ static int compand_delay(AVFilterContext *ctx, AVFrame *frame)
|
||||
|
||||
av_frame_free(&frame);
|
||||
|
||||
if (out_frame) {
|
||||
err = ff_filter_frame(ctx->outputs[0], out_frame);
|
||||
return err;
|
||||
}
|
||||
if (out_frame)
|
||||
return ff_filter_frame(ctx->outputs[0], out_frame);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user