Browse Source

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
tags/v0.6
Stefano Sabatini 15 years ago
parent
commit
2091b27b68
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      cmdutils.c

+ 1
- 1
cmdutils.c 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");


Loading…
Cancel
Save