Hello Sigbj�rn,

�������, 26 ������� 1999 �., you wrote:

SS> At line 353;

SS> int fskip(FILE *sf,long num_bytes,int dummy)
SS> {
SS> char data[num_bytes];

SS> ..this doesn't work (atleast not here), as the char data[..] needs a static
SS> value .. I have no idea how to do this a better way though... :/
    Whether I do not know correctly. I have changed thus:
=======
int fskip(FILE *sf,long num_bytes,int dummy)
{
char *data = (char *) malloc(num_bytes);
return (num_bytes != fread(data,(size_t)1,(size_t)num_bytes,sf));
free(data);
}
=======
    The files coded lame 3.35 and lame 3.36 with my patch are identical.

Best regards,
 Sergey                            mailto:[EMAIL PROTECTED]


--
MP3 ENCODER mailing list ( http://geek.rcc.se/mp3encoder/ )

Reply via email to