![]() | ![]() | ![]() | GStreamer Core Reference Manual | ![]() |
---|
GstProps — Properties
#include <gst/gst.h> #define GST_MAKE_FOURCC (a,b,c,d) #define GST_STR_FOURCC (f)
GstProps is used to attach certain properties to a pad. Properties are usually used in conjunction with GstCaps.
#define GST_MAKE_FOURCC(a,b,c,d) (guint32)((a)|(b)<<8|(c)<<16|(d)<<24)
Create a FOURCC value that can easily be used to construct a fourcc property.
... "format", GST_PROPS_FOURCC (GST_MAKE_FOURCC ('Y','U','Y','2')), ...
a : | first fourcc byte |
b : | second fourcc byte |
c : | third fourcc byte |
d : | fourth fourcc byte |
<< GstProbe | GstQuery >> |