mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-06 07:28:53 +00:00
vaapidecodebin: remove unused variables
Since vaapipostproc is only registered if the driver supports it, all the support for dynamic loading were removed. Though some leftovers remained. https://bugzilla.gnome.org/show_bug.cgi?id=773589
This commit is contained in:
parent
2e1f69898b
commit
0db3e14989
2 changed files with 0 additions and 9 deletions
|
@ -73,13 +73,6 @@ enum
|
||||||
PROP_LAST
|
PROP_LAST
|
||||||
};
|
};
|
||||||
|
|
||||||
enum
|
|
||||||
{
|
|
||||||
HAS_VPP_UNKNOWN,
|
|
||||||
HAS_VPP_NO,
|
|
||||||
HAS_VPP_YES
|
|
||||||
};
|
|
||||||
|
|
||||||
static GParamSpec *properties[PROP_LAST];
|
static GParamSpec *properties[PROP_LAST];
|
||||||
|
|
||||||
/* Default templates */
|
/* Default templates */
|
||||||
|
@ -350,7 +343,6 @@ error_adding_pad:
|
||||||
static void
|
static void
|
||||||
gst_vaapi_decode_bin_init (GstVaapiDecodeBin * vaapidecbin)
|
gst_vaapi_decode_bin_init (GstVaapiDecodeBin * vaapidecbin)
|
||||||
{
|
{
|
||||||
vaapidecbin->has_vpp = HAS_VPP_UNKNOWN;
|
|
||||||
vaapidecbin->deinterlace_method = DEFAULT_DEINTERLACE_METHOD;
|
vaapidecbin->deinterlace_method = DEFAULT_DEINTERLACE_METHOD;
|
||||||
|
|
||||||
gst_vaapi_decode_bin_configure (vaapidecbin);
|
gst_vaapi_decode_bin_configure (vaapidecbin);
|
||||||
|
|
|
@ -53,7 +53,6 @@ typedef struct _GstVaapiDecodeBin {
|
||||||
guint64 max_size_time;
|
guint64 max_size_time;
|
||||||
GstVaapiDeinterlaceMethod deinterlace_method;
|
GstVaapiDeinterlaceMethod deinterlace_method;
|
||||||
gboolean disable_vpp;
|
gboolean disable_vpp;
|
||||||
guint has_vpp;
|
|
||||||
|
|
||||||
} GstVaapiDecodeBin;
|
} GstVaapiDecodeBin;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue