Commit 2091b27b authored by Stefano Sabatini's avatar Stefano Sabatini

Make show_formats() print each bitstream filter on a separate line.

Improve readability of the output.

Originally committed as revision 20549 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent bceae293
......@@ -532,7 +532,7 @@ void show_formats(void)
printf("Bitstream filters:\n");
while((bsf = av_bitstream_filter_next(bsf)))
printf(" %s", bsf->name);
printf("%s\n", bsf->name);
printf("\n");
printf("Supported file protocols:\n");
......
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