Commit e002ec33 authored by Jun Zhao's avatar Jun Zhao Committed by Jun Zhao

lavfi/buffersrc: Indent the code.

commit b0012de4 missed reindent.
Signed-off-by: 's avatarJun Zhao <mypopydev@gmail.com>
parent a036c259
...@@ -205,21 +205,21 @@ static int av_buffersrc_add_frame_internal(AVFilterContext *ctx, ...@@ -205,21 +205,21 @@ static int av_buffersrc_add_frame_internal(AVFilterContext *ctx,
if (!(flags & AV_BUFFERSRC_FLAG_NO_CHECK_FORMAT)) { if (!(flags & AV_BUFFERSRC_FLAG_NO_CHECK_FORMAT)) {
switch (ctx->outputs[0]->type) { switch (ctx->outputs[0]->type) {
case AVMEDIA_TYPE_VIDEO: case AVMEDIA_TYPE_VIDEO:
CHECK_VIDEO_PARAM_CHANGE(ctx, s, frame->width, frame->height, CHECK_VIDEO_PARAM_CHANGE(ctx, s, frame->width, frame->height,
frame->format); frame->format);
break; break;
case AVMEDIA_TYPE_AUDIO: case AVMEDIA_TYPE_AUDIO:
/* For layouts unknown on input but known on link after negotiation. */ /* For layouts unknown on input but known on link after negotiation. */
if (!frame->channel_layout) if (!frame->channel_layout)
frame->channel_layout = s->channel_layout; frame->channel_layout = s->channel_layout;
CHECK_AUDIO_PARAM_CHANGE(ctx, s, frame->sample_rate, frame->channel_layout, CHECK_AUDIO_PARAM_CHANGE(ctx, s, frame->sample_rate, frame->channel_layout,
frame->channels, frame->format); frame->channels, frame->format);
break; break;
default: default:
return AVERROR(EINVAL); return AVERROR(EINVAL);
} }
} }
......
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