-
mpg123_open_fd() is OK!
Thanks!!
2009-06-25 12:00:07 UTC in mpg123
-
Oh...I'm sorry to opening a new bug report for the same issue...
Thank you very much~!
I'll try it...
2009-06-25 10:59:40 UTC in mpg123
-
I'm sorry...
On Windows system...
Microsoft Visual Studio 2008...
int i = 0;
while(true){
i++;
mpg123_handle *_handle = NULL;
DWORD sizeBuff = 0;
BYTE* _buffer = NULL;
int ret = -1;
_handle = mpg123_new(NULL, &ret);
ret = mpg123_topen(_handle, *file);
long rate = 0;
int channel = 0;
int encoding = 0;
ret = mpg123_getformat(_handle, &rate, &channel, &encoding);...
2009-06-24 02:20:12 UTC in mpg123
-
My English is not well...
I have buile a softwear to edit a Music Game...
so it will open more and more mp3 files.and the files always less then 10kb...
I use LibMPG123 to decode the mp3 files.
but when the files number is more than 2000,it will be error...
ret = mpg123_topen(_handle, *file);
if( ret != MPG123_OK )
return -1;
ret = -1;
How to solve this problem?.
2009-06-23 02:34:33 UTC in mpg123