amcvideodec: fix build error from change in libgstgl

gstamcvideodec.c: In function 'gst_amc_video_dec_src_query':
gstamcvideodec.c:2412:55: error: 'self' undeclared (first use in this function)
       if (gst_gl_handle_context_query ((GstElement *) self, query,
This commit is contained in:
Matthew Waters 2017-01-13 21:17:33 +11:00
parent 03b539bdfc
commit ed03fd6d3f

View file

@ -2406,6 +2406,8 @@ gst_amc_video_dec_drain (GstAmcVideoDec * self)
static gboolean
gst_amc_video_dec_src_query (GstVideoDecoder * bdec, GstQuery * query)
{
GstAmcVideoDec *self = GST_AMC_VIDEO_DEC (decoder);
switch (GST_QUERY_TYPE (query)) {
case GST_QUERY_CONTEXT:
{