mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-12 10:25:33 +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
|
||||
};
|
||||
|
||||
enum
|
||||
{
|
||||
HAS_VPP_UNKNOWN,
|
||||
HAS_VPP_NO,
|
||||
HAS_VPP_YES
|
||||
};
|
||||
|
||||
static GParamSpec *properties[PROP_LAST];
|
||||
|
||||
/* Default templates */
|
||||
|
@ -350,7 +343,6 @@ error_adding_pad:
|
|||
static void
|
||||
gst_vaapi_decode_bin_init (GstVaapiDecodeBin * vaapidecbin)
|
||||
{
|
||||
vaapidecbin->has_vpp = HAS_VPP_UNKNOWN;
|
||||
vaapidecbin->deinterlace_method = DEFAULT_DEINTERLACE_METHOD;
|
||||
|
||||
gst_vaapi_decode_bin_configure (vaapidecbin);
|
||||
|
|
|
@ -53,7 +53,6 @@ typedef struct _GstVaapiDecodeBin {
|
|||
guint64 max_size_time;
|
||||
GstVaapiDeinterlaceMethod deinterlace_method;
|
||||
gboolean disable_vpp;
|
||||
guint has_vpp;
|
||||
|
||||
} GstVaapiDecodeBin;
|
||||
|
||||
|
|
Loading…
Reference in a new issue