Message ID | 20240909083430.351986-1-dev@lynne.ee |
---|---|
State | New |
Headers | show |
Series | [FFmpeg-devel] fftools/opt_common: add missing newline after printing codecs | expand |
Context | Check | Description |
---|---|---|
yinshiyou/make_loongarch64 | success | Make finished |
yinshiyou/make_fate_loongarch64 | success | Make fate finished |
andriy/make_x86 | success | Make finished |
andriy/make_fate_x86 | success | Make fate finished |
Quoting Lynne via ffmpeg-devel (2024-09-09 10:34:21) > This solves > ffmpeg -help bsf=trace_headers => > > Supported codecs: av1 h264 hevc vvc mjpeg mpeg2video vp8 vp9<no newline> > --- > fftools/opt_common.c | 1 + > 1 file changed, 1 insertion(+) Looks ok
On 09/09/2024 11:57, Anton Khirnov wrote: > Quoting Lynne via ffmpeg-devel (2024-09-09 10:34:21) >> This solves >> ffmpeg -help bsf=trace_headers => >> >> Supported codecs: av1 h264 hevc vvc mjpeg mpeg2video vp8 vp9<no newline> >> --- >> fftools/opt_common.c | 1 + >> 1 file changed, 1 insertion(+) > > Looks ok > Pushed, thanks
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);