[FFmpeg-cvslog] fftools/opt_common: add missing newline after printing codecs
Lynne
git at videolan.org
Mon Sep 9 14:03:45 EEST 2024
ffmpeg | branch: master | Lynne <dev at lynne.ee> | Mon Sep 9 10:33:12 2024 +0200| [1709f3830e14d5f1a6c1ec78097545af1fcb45e8] | committer: Lynne
fftools/opt_common: add missing newline after printing codecs
This fixes
ffmpeg -help bsf=trace_headers =>
Supported codecs: av1 h264 hevc vvc mjpeg mpeg2video vp8 vp9<no newline>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1709f3830e14d5f1a6c1ec78097545af1fcb45e8
---
fftools/opt_common.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/fftools/opt_common.c b/fftools/opt_common.c
index f44fc4c97c..021ed75272 100644
--- a/fftools/opt_common.c
+++ b/fftools/opt_common.c
@@ -572,6 +572,7 @@ static void show_help_bsf(const char *name)
printf(" %s", avcodec_descriptor_get(*id)->name);
id++;
}
+ printf("\n");
}
if (bsf->priv_class)
show_help_children(bsf->priv_class, AV_OPT_FLAG_BSF_PARAM);
More information about the ffmpeg-cvslog
mailing list