Skip to content
Snippets Groups Projects
Commit eabc0c73 authored by Clément Bœsch's avatar Clément Bœsch
Browse files

ffmpeg: insert format filter with the appropriate separator.

Similar to 937325f3.
parent 23a750c9
No related branches found
No related tags found
No related merge requests found
...@@ -124,7 +124,7 @@ static char *choose_pix_fmts(OutputStream *ost) ...@@ -124,7 +124,7 @@ static char *choose_pix_fmts(OutputStream *ost)
for (; *p != AV_PIX_FMT_NONE; p++) { for (; *p != AV_PIX_FMT_NONE; p++) {
const char *name = av_get_pix_fmt_name(*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); len = avio_close_dyn_buf(s, &ret);
ret[len - 1] = 0; ret[len - 1] = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment