Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/alexmarsev/libbs2b.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/bs2bconvert.c')
-rw-r--r--src/bs2bconvert.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/bs2bconvert.c b/src/bs2bconvert.c
index fd0c32e..b845e7f 100644
--- a/src/bs2bconvert.c
+++ b/src/bs2bconvert.c
@@ -194,13 +194,7 @@ static void copy_data( SNDFILE *outfile, SNDFILE *infile, t_bs2bdp bs2bdp )
{
readcount = ( int )sf_read_double( infile, data, BUFFER_LEN );
if( readcount < 2 ) break;
-
-#if ((BS2B_VERSION_MAJOR != 2) || (BS2B_VERSION_MINOR != 3) || (BS2B_VERSION_RELEASE != 0))
-# error Stupid compile fix by sping, proper fix needed before next release
- bs2b_cross_feed_dne( bs2bdp, data, readcount / 2 );
-#else
- bs2b_cross_feed_dle( bs2bdp, data, readcount / 2 );
-#endif
+ bs2b_cross_feed_d( bs2bdp, data, readcount / 2 );
sf_write_double( outfile, data, readcount );
}
} /* copy_data() */