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
release/0.6
Stefano Sabatini 15 years ago
parent bceae2936f
commit 2091b27b68
  1. 2
      cmdutils.c

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

Loading…
Cancel
Save