mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-12 10:25:33 +00:00
nvbaseenc: fix build warnings with HAVE_NVENC_GST_GL
fix following error: gstnvbaseenc.c: In function ‘gst_nv_base_enc_set_context’: gstnvbaseenc.c:451:17: error: unused variable ‘nvenc’ [-Werror=unused-variable] GstNvBaseEnc *nvenc = GST_NV_BASE_ENC (element); ^ https://bugzilla.gnome.org/show_bug.cgi?id=794896
This commit is contained in:
parent
29c785ef28
commit
faa892fb48
1 changed files with 3 additions and 1 deletions
|
@ -448,9 +448,9 @@ gst_nv_base_enc_open (GstVideoEncoder * enc)
|
||||||
static void
|
static void
|
||||||
gst_nv_base_enc_set_context (GstElement * element, GstContext * context)
|
gst_nv_base_enc_set_context (GstElement * element, GstContext * context)
|
||||||
{
|
{
|
||||||
|
#if HAVE_NVENC_GST_GL
|
||||||
GstNvBaseEnc *nvenc = GST_NV_BASE_ENC (element);
|
GstNvBaseEnc *nvenc = GST_NV_BASE_ENC (element);
|
||||||
|
|
||||||
#if HAVE_NVENC_GST_GL
|
|
||||||
gst_gl_handle_set_context (element, context,
|
gst_gl_handle_set_context (element, context,
|
||||||
(GstGLDisplay **) & nvenc->display,
|
(GstGLDisplay **) & nvenc->display,
|
||||||
(GstGLContext **) & nvenc->other_context);
|
(GstGLContext **) & nvenc->other_context);
|
||||||
|
@ -465,7 +465,9 @@ gst_nv_base_enc_set_context (GstElement * element, GstContext * context)
|
||||||
static gboolean
|
static gboolean
|
||||||
gst_nv_base_enc_sink_query (GstVideoEncoder * enc, GstQuery * query)
|
gst_nv_base_enc_sink_query (GstVideoEncoder * enc, GstQuery * query)
|
||||||
{
|
{
|
||||||
|
#if HAVE_NVENC_GST_GL
|
||||||
GstNvBaseEnc *nvenc = GST_NV_BASE_ENC (enc);
|
GstNvBaseEnc *nvenc = GST_NV_BASE_ENC (enc);
|
||||||
|
#endif
|
||||||
|
|
||||||
switch (GST_QUERY_TYPE (query)) {
|
switch (GST_QUERY_TYPE (query)) {
|
||||||
#if HAVE_NVENC_GST_GL
|
#if HAVE_NVENC_GST_GL
|
||||||
|
|
Loading…
Reference in a new issue