mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-04 14:38:48 +00:00
gtksink: Ensure the copy pasted code remains the same
Move back the default property at the same place they are in the other sink. This helps when using a diff viewer to synchronized this unfortunate copy paste. https://bugzilla.gnome.org/show_bug.cgi?id=751104
This commit is contained in:
parent
1a7c9b82f4
commit
999bdd72c9
1 changed files with 5 additions and 5 deletions
|
@ -32,6 +32,11 @@
|
||||||
GST_DEBUG_CATEGORY (gst_debug_gtk_sink);
|
GST_DEBUG_CATEGORY (gst_debug_gtk_sink);
|
||||||
#define GST_CAT_DEFAULT gst_debug_gtk_sink
|
#define GST_CAT_DEFAULT gst_debug_gtk_sink
|
||||||
|
|
||||||
|
#define DEFAULT_FORCE_ASPECT_RATIO TRUE
|
||||||
|
#define DEFAULT_PAR_N 0
|
||||||
|
#define DEFAULT_PAR_D 1
|
||||||
|
#define DEFAULT_IGNORE_ALPHA TRUE
|
||||||
|
|
||||||
static void gst_gtk_sink_finalize (GObject * object);
|
static void gst_gtk_sink_finalize (GObject * object);
|
||||||
static void gst_gtk_sink_set_property (GObject * object, guint prop_id,
|
static void gst_gtk_sink_set_property (GObject * object, guint prop_id,
|
||||||
const GValue * value, GParamSpec * param_spec);
|
const GValue * value, GParamSpec * param_spec);
|
||||||
|
@ -64,11 +69,6 @@ GST_STATIC_PAD_TEMPLATE ("sink",
|
||||||
GST_STATIC_CAPS (GST_VIDEO_CAPS_MAKE (FORMATS))
|
GST_STATIC_CAPS (GST_VIDEO_CAPS_MAKE (FORMATS))
|
||||||
);
|
);
|
||||||
|
|
||||||
#define DEFAULT_FORCE_ASPECT_RATIO TRUE
|
|
||||||
#define DEFAULT_PAR_N 0
|
|
||||||
#define DEFAULT_PAR_D 1
|
|
||||||
#define DEFAULT_IGNORE_ALPHA TRUE
|
|
||||||
|
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
PROP_0,
|
PROP_0,
|
||||||
|
|
Loading…
Reference in a new issue