avimux: add support for png

https://bugzilla.gnome.org/show_bug.cgi?id=758059
This commit is contained in:
Dimitrios Katsaros 2015-11-13 15:52:35 +01:00 committed by Tim-Philipp Müller
parent d7eb97393c
commit 1f0cfd9ffb

View file

@ -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;
}