mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-06 08:09:56 +00:00
deinterlace: Fix 'implicit conversion from enumeration type 'GstDeinterlaceFields' to different enumeration type 'GstDeinterlaceMode'' compiler warning
This commit is contained in:
parent
a83d2f7047
commit
4d55588e35
1 changed files with 2 additions and 1 deletions
|
@ -1982,7 +1982,8 @@ gst_deinterlace_chain (GstPad * pad, GstBuffer * buf)
|
|||
self->fields = self->new_fields;
|
||||
if (self->new_mode != -1)
|
||||
self->mode = self->new_mode;
|
||||
self->new_mode = self->new_fields = -1;
|
||||
self->new_mode = -1;
|
||||
self->new_fields = -1;
|
||||
|
||||
self->reconfigure = FALSE;
|
||||
GST_OBJECT_UNLOCK (self);
|
||||
|
|
Loading…
Reference in a new issue