Hopefully fixed problem with stdin as audio source

This commit is contained in:
Thomas Schmitt 2006-10-15 21:04:00 +00:00
parent fdfc4ebf36
commit e326e9aac9
1 changed files with 3 additions and 0 deletions

View File

@ -158,6 +158,9 @@ static int libdax_audioxtr_init_reading(struct libdax_audioxtr *o, int flag)
int ret;
/* currently this only works for MS WAVE files .wav */;
if(o->fd==0) /* stdin: hope no read came after libdax_audioxtr_identify() */
return(1);
ret= lseek(o->fd,44,SEEK_SET);
if(ret==-1)
return(0);