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
This commit is contained in:
Stefano Sabatini 2009-11-18 22:27:23 +00:00
parent bceae2936f
commit 2091b27b68
1 changed files with 1 additions and 1 deletions

View File

@ -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");