Searched refs:hRes (Results 1 – 7 of 7) sorted by relevance
/third_party/gstreamer/gstplugins_good/sys/directsound/ |
D | gstdirectsoundsink.c | 112 static gchar *gst_hres_to_string (HRESULT hRes); 426 HRESULT hRes; in gst_directsound_sink_open() local 441 if (FAILED (hRes = DirectSoundCreate (lpGuid, &dsoundsink->pDS, NULL))) { in gst_directsound_sink_open() 442 gchar *error_text = gst_hres_to_string (hRes); in gst_directsound_sink_open() 452 if (FAILED (hRes = IDirectSound_SetCooperativeLevel (dsoundsink->pDS, in gst_directsound_sink_open() 454 gchar *error_text = gst_hres_to_string (hRes); in gst_directsound_sink_open() 476 HRESULT hRes; in gst_directsound_sink_prepare() local 548 hRes = IDirectSound_CreateSoundBuffer (dsoundsink->pDS, &descSecondary, in gst_directsound_sink_prepare() 550 if (FAILED (hRes)) { in gst_directsound_sink_prepare() 551 gchar *error_text = gst_hres_to_string (hRes); in gst_directsound_sink_prepare() [all …]
|
D | gstdirectsounddevice.c | 155 HRESULT hRes; in gst_directsound_device_provider_probe() local 158 hRes = DirectSoundCaptureEnumerate ((LPDSENUMCALLBACK) in gst_directsound_device_provider_probe() 161 hRes = DirectSoundEnumerate ((LPDSENUMCALLBACK) in gst_directsound_device_provider_probe() 165 if (FAILED (hRes)) in gst_directsound_device_provider_probe()
|
/third_party/gstreamer/gstplugins_bad/sys/directsound/ |
D | gstdirectsoundsrc.c | 401 HRESULT hRes; /* Result for windows functions */ in gst_directsound_src_open() local 419 hRes = DirectSoundCaptureEnumerate ((LPDSENUMCALLBACK) in gst_directsound_src_open() 422 if (FAILED (hRes)) { in gst_directsound_src_open() 427 hRes = in gst_directsound_src_open() 431 if (FAILED (hRes)) { in gst_directsound_src_open() 478 HRESULT hRes; /* Result for windows functions */ in gst_directsound_src_prepare() local 550 hRes = IDirectSoundCapture_CreateCaptureBuffer (dsoundsrc->pDSC, in gst_directsound_src_prepare() 552 if (hRes != DS_OK) in gst_directsound_src_prepare() 618 HRESULT hRes; /* Result for windows functions */ in gst_directsound_src_read() local 636 hRes = IDirectSoundCaptureBuffer_GetStatus (dsoundsrc->pDSBSecondary, in gst_directsound_src_read() [all …]
|
D | gstdirectsounddevice.c | 155 HRESULT hRes; in gst_directsound_device_provider_probe() local 158 hRes = DirectSoundCaptureEnumerate ((LPDSENUMCALLBACK) in gst_directsound_device_provider_probe() 161 hRes = DirectSoundEnumerate ((LPDSENUMCALLBACK) in gst_directsound_device_provider_probe() 165 if (FAILED (hRes)) in gst_directsound_device_provider_probe()
|
/third_party/cef/tests/shared/browser/ |
D | resource_util_win.cc | 18 HRSRC hRes = in LoadBinaryResource() local 20 if (hRes) { in LoadBinaryResource() 21 HGLOBAL hGlob = LoadResource(hInst, hRes); in LoadBinaryResource() 23 dwSize = SizeofResource(hInst, hRes); in LoadBinaryResource()
|
/third_party/vk-gl-cts/framework/egl/ |
D | egluUtil.cpp | 227 const EGLint hRes = querySurfaceInt(egl, display, surface, EGL_HORIZONTAL_RESOLUTION); in getSurfaceResolution() local 230 if (hRes == EGL_UNKNOWN || vRes == EGL_UNKNOWN) in getSurfaceResolution() 232 return tcu::IVec2(hRes, vRes); in getSurfaceResolution()
|
/third_party/vk-gl-cts/modules/egl/ |
D | teglQuerySurfaceTests.cpp | 150 const EGLint hRes = eglu::querySurfaceInt(egl, display, surface, EGL_HORIZONTAL_RESOLUTION); in checkCommonAttributes() local 153 if ((hRes <= 0 || vRes <= 0) && (hRes != EGL_UNKNOWN && vRes != EGL_UNKNOWN)) in checkCommonAttributes() 155 …log << TestLog::Message << " Fail, invalid surface resolution " << hRes << "x" << vRes << TestL… in checkCommonAttributes()
|