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

ffmpeg: insert format filter with the appropriate separator.

Similar to 937325f3.
This commit is contained in:
Clément Bœsch 2013-04-11 18:05:46 +02:00
parent 23a750c994
commit eabc0c733d

View File

@ -124,7 +124,7 @@ static char *choose_pix_fmts(OutputStream *ost)
for (; *p != AV_PIX_FMT_NONE; p++) {
const char *name = av_get_pix_fmt_name(*p);
avio_printf(s, "%s:", name);
avio_printf(s, "%s|", name);
}
len = avio_close_dyn_buf(s, &ret);
ret[len - 1] = 0;