Commit eabc0c73 authored by Clément Bœsch's avatar Clément Bœsch

ffmpeg: insert format filter with the appropriate separator.

Similar to 937325f3.
parent 23a750c9
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment