mpg123-1.32.5

This commit is contained in:
Ozkan Sezer
2024-02-17 21:28:24 +03:00
parent a06847ca33
commit 73caa15ce9
10 changed files with 43 additions and 23 deletions

View File

@@ -648,9 +648,10 @@ int attribute_align_arg mpg123_open_handle(mpg123_handle *mh, void *iohandle)
#ifndef PORTABLE_API
ret = INT123_wrap_open( mh, iohandle, NULL, -1
, mh->p.timeout, mh->p.flags & MPG123_QUIET );
iohandle = ret == LFS_WRAP_NONE ? iohandle : mh->wrapperdata;
if(ret >= 0)
#endif
ret = INT123_open_stream_handle(mh, ret == LFS_WRAP_NONE ? iohandle : mh->wrapperdata);
ret = INT123_open_stream_handle(mh, iohandle);
return ret;
}