mpg123-1.32.0

This commit is contained in:
Ozkan Sezer
2023-09-24 08:51:02 +03:00
parent 89d671ef14
commit 2279cffc0f
241 changed files with 18940 additions and 16360 deletions

View File

@@ -128,7 +128,7 @@ static int open_win32(out123_handle *ao){
EXIT_ON_ERROR(hr)
if (ao->device) {
devlen = win32_utf8_wide(ao->device, &device, NULL);
devlen = INT123_win32_utf8_wide(ao->device, &device, NULL);
if(device && devlen > 0) {
hr = IMMDeviceEnumerator_GetDevice(state->pEnumerator, device, &state->pDevice);
mdebug("IMMDeviceEnumerator_GetDevice %x", hr);
@@ -545,7 +545,7 @@ static int enumerate_win32( out123_handle *ao, int (*store_device)(void *devlist
if(FAILED(hr) || pProps == NULL) goto Exit;
/* get ID */
win32_wide_utf8(pwszID, &pszID, NULL);
INT123_win32_wide_utf8(pwszID, &pszID, NULL);
if(pszID == NULL) goto Exit;
/* get Property */
@@ -557,7 +557,7 @@ static int enumerate_win32( out123_handle *ao, int (*store_device)(void *devlist
}
/* get Description*/
win32_wide_utf8(varName.pwszVal, &pszDesc, NULL);
INT123_win32_wide_utf8(varName.pwszVal, &pszDesc, NULL);
PropVariantClear(&varName);
if(pszDesc == NULL) goto Exit;