mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-10 00:23:32 +02:00
fix bug 238: aiff offset importing ignored (patches libsndfile)
This commit is contained in:
@@ -519,7 +519,8 @@ aiff_read_header (SF_PRIVATE *psf, COMM_CHUNK *comm_fmt)
|
||||
psf->datalength -= ssnd_fmt.offset ;
|
||||
}
|
||||
else
|
||||
{ psf_log_printf (psf, " Offset : %u (Should be zero)\n", ssnd_fmt.offset) ;
|
||||
{ psf->dataoffset += ssnd_fmt.offset ;
|
||||
psf_log_printf (psf, " Offset : %u (Should be zero)\n", ssnd_fmt.offset) ;
|
||||
psf_log_printf (psf, " Block Size : %u ???\n", ssnd_fmt.blocksize) ;
|
||||
} ;
|
||||
|
||||
|
Reference in New Issue
Block a user