Make 'ffmpeg -formats' print codec long names.

patch by Stefano Sabatini, stefano.sabatini-lala poste it

Originally committed as revision 13142 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Stefano Sabatini 17 years ago committed by Diego Biurrun
parent 0eeb52f9e9
commit 54d2d4f698
  1. 5
      ffmpeg.c

@ -3466,14 +3466,15 @@ static void opt_show_formats(void)
break; break;
} }
printf( printf(
" %s%s%s%s%s%s %s", " %s%s%s%s%s%s %-15s %s",
decode ? "D": (/*p2->decoder ? "d":*/" "), decode ? "D": (/*p2->decoder ? "d":*/" "),
encode ? "E":" ", encode ? "E":" ",
type_str, type_str,
cap & CODEC_CAP_DRAW_HORIZ_BAND ? "S":" ", cap & CODEC_CAP_DRAW_HORIZ_BAND ? "S":" ",
cap & CODEC_CAP_DR1 ? "D":" ", cap & CODEC_CAP_DR1 ? "D":" ",
cap & CODEC_CAP_TRUNCATED ? "T":" ", cap & CODEC_CAP_TRUNCATED ? "T":" ",
p2->name); p2->name,
p2->long_name ? p2->long_name : "");
/* if(p2->decoder && decode==0) /* if(p2->decoder && decode==0)
printf(" use %s for decoding", p2->decoder->name);*/ printf(" use %s for decoding", p2->decoder->name);*/
printf("\n"); printf("\n");

Loading…
Cancel
Save