mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-21 13:36:39 +00:00
goom: port to new caps
This commit is contained in:
parent
dc14c1ffc9
commit
84371e4066
2 changed files with 6 additions and 2 deletions
|
@ -312,7 +312,7 @@ dnl *** plug-ins to include ***
|
||||||
|
|
||||||
dnl Non ported plugins (non-dependant, then dependant)
|
dnl Non ported plugins (non-dependant, then dependant)
|
||||||
dnl Make sure you have a space before and after all plugins
|
dnl Make sure you have a space before and after all plugins
|
||||||
GST_PLUGINS_NONPORTED=" deinterlace flx goom goom2k1 icydemux id3demux \
|
GST_PLUGINS_NONPORTED=" deinterlace flx goom2k1 icydemux id3demux \
|
||||||
imagefreeze interleave isomp4 law matroska monoscope shapewipe smpte \
|
imagefreeze interleave isomp4 law matroska monoscope shapewipe smpte \
|
||||||
videobox videocrop videomixer \
|
videobox videocrop videomixer \
|
||||||
annodex apetag cairo cairo_gobject dv1394 flac gdk_pixbuf jpeg libdv libpng \
|
annodex apetag cairo cairo_gobject dv1394 flac gdk_pixbuf jpeg libdv libpng \
|
||||||
|
|
|
@ -72,7 +72,11 @@ enum
|
||||||
static GstStaticPadTemplate src_template = GST_STATIC_PAD_TEMPLATE ("src",
|
static GstStaticPadTemplate src_template = GST_STATIC_PAD_TEMPLATE ("src",
|
||||||
GST_PAD_SRC,
|
GST_PAD_SRC,
|
||||||
GST_PAD_ALWAYS,
|
GST_PAD_ALWAYS,
|
||||||
GST_STATIC_CAPS (GST_VIDEO_CAPS_xRGB_HOST_ENDIAN)
|
#if G_BYTE_ORDER == G_BIG_ENDIAN
|
||||||
|
GST_STATIC_CAPS (GST_VIDEO_CAPS_MAKE ("xRGB"))
|
||||||
|
#else
|
||||||
|
GST_STATIC_CAPS (GST_VIDEO_CAPS_MAKE ("BGRx"))
|
||||||
|
#endif
|
||||||
);
|
);
|
||||||
|
|
||||||
static GstStaticPadTemplate sink_template = GST_STATIC_PAD_TEMPLATE ("sink", /* the name of the pads */
|
static GstStaticPadTemplate sink_template = GST_STATIC_PAD_TEMPLATE ("sink", /* the name of the pads */
|
||||||
|
|
Loading…
Reference in a new issue