diff options
author | Stefano Sabatini | 2009-11-18 22:27:23 +0000 |
---|---|---|
committer | Stefano Sabatini | 2009-11-18 22:27:23 +0000 |
commit | 2091b27b6851716b175dd85ead0bf48ff1d32503 (patch) | |
tree | 445671c52c2d2a01b6a843453e95256b32dc42d8 | |
parent | bceae2936f4f7e4ea164656aed560431ef1b04f0 (diff) |
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
-rw-r--r-- | cmdutils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmdutils.c b/cmdutils.c index ffa5957b71..37b8e6e44e 100644 --- a/cmdutils.c +++ b/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"); |