cosmetics: indentation, whitespaces

Originally committed as revision 23090 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Baptiste Coudurier 2010-05-11 17:18:13 +00:00
parent 6e82e7fa48
commit 79b90b2549
1 changed files with 12 additions and 12 deletions

View File

@ -406,16 +406,16 @@ static int configure_filters(AVInputStream *ist, AVOutputStream *ost)
graph = av_mallocz(sizeof(AVFilterGraph)); graph = av_mallocz(sizeof(AVFilterGraph));
if(!(ist->input_video_filter = avfilter_open(avfilter_get_by_name("buffer"), "src"))) if (!(ist->input_video_filter = avfilter_open(avfilter_get_by_name("buffer"), "src")))
return -1; return -1;
if(!(ist->out_video_filter = avfilter_open(&output_filter, "out"))) if (!(ist->out_video_filter = avfilter_open(&output_filter, "out")))
return -1; return -1;
snprintf(args, 255, "%d:%d:%d", ist->st->codec->width, snprintf(args, 255, "%d:%d:%d", ist->st->codec->width,
ist->st->codec->height, ist->st->codec->pix_fmt); ist->st->codec->height, ist->st->codec->pix_fmt);
if(avfilter_init_filter(ist->input_video_filter, args, NULL)) if (avfilter_init_filter(ist->input_video_filter, args, NULL))
return -1; return -1;
if(avfilter_init_filter(ist->out_video_filter, NULL, &codec->pix_fmt)) if (avfilter_init_filter(ist->out_video_filter, NULL, &codec->pix_fmt))
return -1; return -1;
/* add input and output filters to the overall graph */ /* add input and output filters to the overall graph */
@ -424,7 +424,7 @@ static int configure_filters(AVInputStream *ist, AVOutputStream *ost)
curr_filter = ist->input_video_filter; curr_filter = ist->input_video_filter;
if(ost->video_crop) { if (ost->video_crop) {
AVFilterContext *filt_crop; AVFilterContext *filt_crop;
snprintf(args, 255, "%d:%d:%d:%d", ost->leftBand, ost->topBand, snprintf(args, 255, "%d:%d:%d:%d", ost->leftBand, ost->topBand,
codec->width, codec->width,
@ -459,7 +459,7 @@ static int configure_filters(AVInputStream *ist, AVOutputStream *ost)
avfilter_graph_add_filter(graph, curr_filter); avfilter_graph_add_filter(graph, curr_filter);
} }
if(vfilters) { if (vfilters) {
AVFilterInOut *outputs = av_malloc(sizeof(AVFilterInOut)); AVFilterInOut *outputs = av_malloc(sizeof(AVFilterInOut));
AVFilterInOut *inputs = av_malloc(sizeof(AVFilterInOut)); AVFilterInOut *inputs = av_malloc(sizeof(AVFilterInOut));
@ -477,19 +477,19 @@ static int configure_filters(AVInputStream *ist, AVOutputStream *ost)
return -1; return -1;
av_freep(&vfilters); av_freep(&vfilters);
} else { } else {
if(avfilter_link(curr_filter, 0, ist->out_video_filter, 0) < 0) if (avfilter_link(curr_filter, 0, ist->out_video_filter, 0) < 0)
return -1; return -1;
} }
snprintf(args, sizeof(args), "flags=0x%X", (int)av_get_int(sws_opts, "sws_flags", NULL)); snprintf(args, sizeof(args), "flags=0x%X", (int)av_get_int(sws_opts, "sws_flags", NULL));
graph->scale_sws_opts = av_strdup(args); graph->scale_sws_opts = av_strdup(args);
/* configure all the filter links */ /* configure all the filter links */
if(avfilter_graph_check_validity(graph, NULL)) if (avfilter_graph_check_validity(graph, NULL))
return -1; return -1;
if(avfilter_graph_config_formats(graph, NULL)) if (avfilter_graph_config_formats(graph, NULL))
return -1; return -1;
if(avfilter_graph_config_links(graph, NULL)) if (avfilter_graph_config_links(graph, NULL))
return -1; return -1;
codec->width = ist->out_video_filter->inputs[0]->w; codec->width = ist->out_video_filter->inputs[0]->w;