mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 16:50:47 +00:00
vtenc: fix a warning when building in MacOS 10.12
vtenc.c:564:20: error: incompatible pointer types passing 'GstVTEnc *' (aka 'struct _GstVTEnc *') to parameter of type 'GstVideoEncoder *' (aka 'struct _GstVideoEncoder *')
This commit is contained in:
parent
842d7a9162
commit
5676005235
1 changed files with 1 additions and 1 deletions
|
@ -561,7 +561,7 @@ gst_vtenc_stop (GstVideoEncoder * enc)
|
|||
GstVTEnc *self = GST_VTENC_CAST (enc);
|
||||
|
||||
GST_VIDEO_ENCODER_STREAM_LOCK (self);
|
||||
gst_vtenc_flush (self);
|
||||
gst_vtenc_flush (enc);
|
||||
GST_VIDEO_ENCODER_STREAM_UNLOCK (self);
|
||||
|
||||
GST_OBJECT_LOCK (self);
|
||||
|
|
Loading…
Reference in a new issue