[FFmpeg-cvslog] r20549 - trunk/cmdutils.c

stefano subversion
Wed Nov 18 23:27:23 CET 2009


Author: stefano
Date: Wed Nov 18 23:27:23 2009
New Revision: 20549

Log:
Make show_formats() print each bitstream filter on a separate line.
Improve readability of the output.

Modified:
   trunk/cmdutils.c

Modified: trunk/cmdutils.c
==============================================================================
--- trunk/cmdutils.c	Wed Nov 18 22:01:42 2009	(r20548)
+++ trunk/cmdutils.c	Wed Nov 18 23:27:23 2009	(r20549)
@@ -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");



More information about the ffmpeg-cvslog mailing list