[FFmpeg-cvslog] ffmpeg: insert format filter with the appropriate separator.

Clément Bœsch git at videolan.org
Thu Apr 11 18:09:32 CEST 2013


ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Thu Apr 11 18:05:46 2013 +0200| [eabc0c733dee807d721d4c8a7acb7dd05684ef89] | committer: Clément Bœsch

ffmpeg: insert format filter with the appropriate separator.

Similar to 937325f3.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=eabc0c733dee807d721d4c8a7acb7dd05684ef89
---

 ffmpeg_filter.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ffmpeg_filter.c b/ffmpeg_filter.c
index eb0f1c6..4978f1e 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;



More information about the ffmpeg-cvslog mailing list