From: Sebastian Dr=C3=B6ge Date: Wed, 13 Jun 2012 10:12:39 +0000 (+0200) Subject: directsoundsink: Fix caps leaks X-Git-Tag: RELEASE-0.11.93~131 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f72a55319d233568bdd7a79696047378dc43a56d;p=platform%2Fupstream%2Fgst-plugins-good.git directsoundsink: Fix caps leaks --- diff --git a/sys/directsound/gstdirectsoundsink.c b/sys/directsound/gstdirectsoundsink.c index 2a2a447..e1eaee6 100644 --- a/sys/directsound/gstdirectsoundsink.c +++ b/sys/directsound/gstdirectsoundsink.c @@ -102,7 +102,8 @@ static void gst_directsound_sink_set_mute (GstDirectSoundSink * sink, gboolean mute); static gboolean gst_directsound_sink_get_mute (GstDirectSoundSink * sink); -static gboolean gst_directsound_sink_is_spdif_format (GstDirectSoundSink * dsoundsink); +static gboolean gst_directsound_sink_is_spdif_format (GstDirectSoundSink * + dsoundsink); static GstStaticPadTemplate directsoundsink_sink_factory = GST_STATIC_PAD_TEMPLATE ("sink", @@ -705,6 +706,7 @@ gst_directsound_probe_supported_formats (GstDirectSoundSink * dsoundsink, DSBUFFERDESC descSecondary; WAVEFORMATEX wfx; GstCaps *caps; + GstCaps *tmp, *tmp2; caps = gst_caps_copy (template_caps); @@ -736,8 +738,16 @@ gst_directsound_probe_supported_formats (GstDirectSoundSink * dsoundsink, GST_INFO_OBJECT (dsoundsink, "AC3 passthrough not supported " "(IDirectSound_CreateSoundBuffer returned: %s)\n", DXGetErrorString9 (hRes)); - caps = gst_caps_subtract (caps, gst_caps_new_empty_simple ("audio/x-ac3")); - caps = gst_caps_subtract (caps, gst_caps_new_empty_simple ("audio/x-dts")); + tmp = gst_caps_new_empty_simple ("audio/x-ac3"); + tmp2 = gst_caps_subtract (caps, tmp); + gst_caps_unref (tmp); + gst_caps_unref (caps); + caps = tmp2; + tmp = gst_caps_new_empty_simple ("audio/x-dts"); + tmp2 = gst_caps_subtract (caps, tmp); + gst_caps_unref (tmp); + gst_caps_unref (caps); + caps = tmp2; } else { GST_INFO_OBJECT (dsoundsink, "AC3 passthrough supported"); hRes = IDirectSoundBuffer_Release (dsoundsink->pDSBSecondary); @@ -748,8 +758,16 @@ gst_directsound_probe_supported_formats (GstDirectSoundSink * dsoundsink, } } #else - caps = gst_caps_subtract (caps, gst_caps_new_simple ("audio/x-ac3", NULL)); - caps = gst_caps_subtract (caps, gst_caps_new_simple ("audio/x-dts", NULL)); + tmp = gst_caps_new_empty_simple ("audio/x-ac3"); + tmp2 = gst_caps_subtract (caps, tmp); + gst_caps_unref (tmp); + gst_caps_unref (caps); + caps = tmp2; + tmp = gst_caps_new_empty_simple ("audio/x-dts"); + tmp2 = gst_caps_subtract (caps, tmp); + gst_caps_unref (tmp); + gst_caps_unref (caps); + caps = tmp2; #endif return caps;