winegstreamer: Get rid of the unused "gstpool" field from GSTOutPin.
Signed-off-by: Zebediah Figura <z.figura12@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
e7007ee814
commit
da69d353aa
|
@ -82,7 +82,6 @@ struct GSTOutPin {
|
||||||
GstPad *flip_sink, *flip_src;
|
GstPad *flip_sink, *flip_src;
|
||||||
GstPad *their_src;
|
GstPad *their_src;
|
||||||
GstPad *my_sink;
|
GstPad *my_sink;
|
||||||
GstBufferPool *gstpool;
|
|
||||||
BOOL isaud, isvid;
|
BOOL isaud, isvid;
|
||||||
AM_MEDIA_TYPE * pmt;
|
AM_MEDIA_TYPE * pmt;
|
||||||
HANDLE caps_event;
|
HANDLE caps_event;
|
||||||
|
@ -1769,8 +1768,6 @@ static void free_source_pin(GSTOutPin *pin)
|
||||||
CloseHandle(pin->caps_event);
|
CloseHandle(pin->caps_event);
|
||||||
DeleteMediaType(pin->pmt);
|
DeleteMediaType(pin->pmt);
|
||||||
gst_segment_free(pin->segment);
|
gst_segment_free(pin->segment);
|
||||||
if (pin->gstpool)
|
|
||||||
gst_object_unref(pin->gstpool);
|
|
||||||
|
|
||||||
strmbase_source_cleanup(&pin->pin);
|
strmbase_source_cleanup(&pin->pin);
|
||||||
heap_free(pin);
|
heap_free(pin);
|
||||||
|
|
Loading…
Reference in New Issue