diff --git a/gst/avi/gstavimux.c b/gst/avi/gstavimux.c index e5aa437162..593ed4425e 100644 --- a/gst/avi/gstavimux.c +++ b/gst/avi/gstavimux.c @@ -146,7 +146,10 @@ static GstStaticPadTemplate video_sink_factory = "video/x-vp8, " "width = (int) [ 1, 2147483647 ], " "height = (int) [ 1, 2147483647 ], " - "framerate = (fraction) [ 0, MAX ]") + "framerate = (fraction) [ 0, MAX ];" + "image/png, " + "width = (int) [ 16, 4096 ], " + "height = (int) [ 16, 4096 ], framerate = (fraction) [ 0, MAX ]") ); static GstStaticPadTemplate audio_sink_factory = @@ -602,6 +605,8 @@ gst_avi_mux_vidsink_set_caps (GstPad * pad, GstCaps * vscaps) avipad->vids.compression = GST_MAKE_FOURCC ('M', 'J', '2', 'C'); } else if (!strcmp (mimetype, "video/x-vp8")) { avipad->vids.compression = GST_MAKE_FOURCC ('V', 'P', '8', '0'); + } else if (!strcmp (mimetype, "image/png")) { + avipad->vids.compression = GST_MAKE_FOURCC ('p', 'n', 'g', ' '); } else { valid_caps = FALSE; }