directsoundsrc: Remove unused variable

This commit is contained in:
Sebastian Dröge 2013-08-22 17:32:17 +02:00
parent 4b30e11a2d
commit 6f4f84fea0

View file

@ -192,8 +192,7 @@ gst_directsound_src_class_init (GstDirectSoundSrcClass * klass)
g_object_class_install_property g_object_class_install_property
(gobject_class, PROP_DEVICE_NAME, (gobject_class, PROP_DEVICE_NAME,
g_param_spec_string ("device-name", "Device name", g_param_spec_string ("device-name", "Device name",
"Human-readable name of the sound device", NULL, "Human-readable name of the sound device", NULL, G_PARAM_READWRITE));
G_PARAM_READWRITE));
} }
static GstCaps * static GstCaps *
@ -269,8 +268,8 @@ gst_directsound_src_init (GstDirectSoundSrc * src)
* Gets the GUID of request audio device * Gets the GUID of request audio device
*/ */
static BOOL CALLBACK static BOOL CALLBACK
gst_directsound_enum_callback( GUID* pGUID, TCHAR* strDesc, TCHAR* strDrvName, gst_directsound_enum_callback (GUID * pGUID, TCHAR * strDesc,
VOID* pContext ) TCHAR * strDrvName, VOID * pContext)
{ {
GstDirectSoundSrc *dsoundsrc = GST_DIRECTSOUND_SRC (pContext); GstDirectSoundSrc *dsoundsrc = GST_DIRECTSOUND_SRC (pContext);
@ -295,7 +294,6 @@ gst_directsound_src_open (GstAudioSrc * asrc)
{ {
GstDirectSoundSrc *dsoundsrc; GstDirectSoundSrc *dsoundsrc;
HRESULT hRes; /* Result for windows functions */ HRESULT hRes; /* Result for windows functions */
LPGUID guid;
GST_DEBUG_OBJECT (asrc, "opening directsoundsrc"); GST_DEBUG_OBJECT (asrc, "opening directsoundsrc");
@ -317,9 +315,8 @@ gst_directsound_src_open (GstAudioSrc * asrc)
goto capture_function; goto capture_function;
} }
hRes = hRes = DirectSoundCaptureEnumerate ((LPDSENUMCALLBACK)
DirectSoundCaptureEnumerate((LPDSENUMCALLBACK)gst_directsound_enum_callback, gst_directsound_enum_callback, (VOID *) dsoundsrc);
(VOID*)dsoundsrc);
if (FAILED (hRes)) { if (FAILED (hRes)) {
goto capture_enumerate; goto capture_enumerate;
} }