Browse Source

ffmpeg: insert format filter with the appropriate separator.

Similar to 937325f3.
tags/n2.0
Clément Bœsch 13 years ago
parent
commit
eabc0c733d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      ffmpeg_filter.c

+ 1
- 1
ffmpeg_filter.c 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;


Loading…
Cancel
Save