mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-22 23:28:16 +00:00
avimux: add support for png
https://bugzilla.gnome.org/show_bug.cgi?id=758059
This commit is contained in:
parent
d7eb97393c
commit
1f0cfd9ffb
1 changed files with 6 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue