diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-04-11 18:05:46 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-04-11 18:05:46 +0200 |
commit | eabc0c733dee807d721d4c8a7acb7dd05684ef89 (patch) | |
tree | 9b4fb91b46df50d990b8149ca6aaf6fe785ea8ef /ffmpeg_filter.c | |
parent | 23a750c9940e3dd25d779bddc732c124a980c17d (diff) | |
download | ffmpeg-eabc0c733dee807d721d4c8a7acb7dd05684ef89.tar.gz |
ffmpeg: insert format filter with the appropriate separator.
Similar to 937325f3.
Diffstat (limited to 'ffmpeg_filter.c')
-rw-r--r-- | ffmpeg_filter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg_filter.c b/ffmpeg_filter.c index eb0f1c61c9..4978f1e887 100644 --- a/ffmpeg_filter.c +++ b/ffmpeg_filter.c @@ -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; |