You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avfilter/vf_framepack: remove not needed calls and add newline to log
This commit is contained in:
@@ -142,7 +142,7 @@ static int config_output(AVFilterLink *outlink)
|
||||
height *= 2;
|
||||
break;
|
||||
default:
|
||||
av_log(ctx, AV_LOG_ERROR, "Unknown packing mode.");
|
||||
av_log(ctx, AV_LOG_ERROR, "Unknown packing mode.\n");
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
|
||||
@@ -405,14 +405,12 @@ static int activate(AVFilterContext *ctx)
|
||||
FF_FILTER_FORWARD_STATUS(ctx->inputs[1], outlink);
|
||||
|
||||
if (ff_outlink_frame_wanted(ctx->outputs[0]) &&
|
||||
!ff_outlink_get_status(ctx->inputs[0]) &&
|
||||
!s->input_views[0]) {
|
||||
ff_inlink_request_frame(ctx->inputs[0]);
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (ff_outlink_frame_wanted(ctx->outputs[0]) &&
|
||||
!ff_outlink_get_status(ctx->inputs[1]) &&
|
||||
!s->input_views[1]) {
|
||||
ff_inlink_request_frame(ctx->inputs[1]);
|
||||
return 0;
|
||||
|
Reference in New Issue
Block a user