1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

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>
This commit is contained in:
Lynne 2024-09-09 10:33:12 +02:00
parent 9556379943
commit 1709f3830e
No known key found for this signature in database
GPG Key ID: A2FEA5F03F034464

View File

@ -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);