]> git.sesse.net Git - ffmpeg/commitdiff
print newline after program id even when the name is missing
authorNico Sabbi <nicola.sabbi@poste.it>
Fri, 26 Oct 2007 20:02:11 +0000 (20:02 +0000)
committerNico Sabbi <nicola.sabbi@poste.it>
Fri, 26 Oct 2007 20:02:11 +0000 (20:02 +0000)
Originally committed as revision 10864 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/utils.c

index a7a686e52a221467a4402ead00e465b89bed42e9..c91102c6ce9ea12cb0b56b9352eadb67c90f80ee 100644 (file)
@@ -2580,9 +2580,8 @@ void dump_format(AVFormatContext *ic,
     if(ic->nb_programs) {
         int j, k;
         for(j=0; j<ic->nb_programs; j++) {
-            av_log(NULL, AV_LOG_INFO, "  Program %d", ic->programs[j]->id);
-            if(ic->programs[j]->name)
-                av_log(NULL, AV_LOG_INFO, " \"%s\"\n", ic->programs[j]->name);
+            av_log(NULL, AV_LOG_INFO, "  Program %d %s\n", ic->programs[j]->id,
+                   ic->programs[j]->name ? ic->programs[j]->name : "");
             for(k=0; k<ic->programs[j]->nb_stream_indexes; k++)
                 dump_stream_format(ic, ic->programs[j]->stream_index[k], index, is_output);
          }