Lines Matching refs:error_text
442 gchar *error_text = gst_hres_to_string (hRes); in gst_directsound_sink_open() local
444 ("DirectSoundCreate: %s", error_text), (NULL)); in gst_directsound_sink_open()
446 g_free (error_text); in gst_directsound_sink_open()
454 gchar *error_text = gst_hres_to_string (hRes); in gst_directsound_sink_open() local
456 ("IDirectSound_SetCooperativeLevel: %s", error_text), (NULL)); in gst_directsound_sink_open()
457 g_free (error_text); in gst_directsound_sink_open()
551 gchar *error_text = gst_hres_to_string (hRes); in gst_directsound_sink_prepare() local
553 ("IDirectSound_CreateSoundBuffer: %s", error_text), (NULL)); in gst_directsound_sink_prepare()
554 g_free (error_text); in gst_directsound_sink_prepare()
876 gchar *error_text = gst_hres_to_string (hRes); in gst_directsound_probe_supported_formats() local
878 "(IDirectSound_CreateSoundBuffer returned: %s)\n", error_text); in gst_directsound_probe_supported_formats()
879 g_free (error_text); in gst_directsound_probe_supported_formats()
894 gchar *error_text = gst_hres_to_string (hRes); in gst_directsound_probe_supported_formats() local
896 "(IDirectSoundBuffer_Release returned: %s)\n", error_text); in gst_directsound_probe_supported_formats()
897 g_free (error_text); in gst_directsound_probe_supported_formats()
1034 LPTSTR error_text = NULL; in gst_hres_to_string() local
1039 (LPTSTR) & error_text, 0, NULL); in gst_hres_to_string()
1043 ret_text = g_utf16_to_utf8 (error_text, 0, NULL, NULL, NULL); in gst_hres_to_string()
1045 ret_text = g_strdup (error_text); in gst_hres_to_string()
1048 LocalFree (error_text); in gst_hres_to_string()