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:
authorboris_mikhaylov <boris_mikhaylov@bc0edfbe-c936-4687-b64d-f70bc3985e72>2009-03-18 10:53:21 +0300
committerboris_mikhaylov <boris_mikhaylov@bc0edfbe-c936-4687-b64d-f70bc3985e72>2009-03-18 10:53:21 +0300
commitca253cbd0ce68892d3bfd1e723a19b553f066df2 (patch)
treeb8734a330c039a7e5c7ce2e5e8a73f8c6adc0e3d
parenta151843d4065bc8202b13d58b80f7ef2745e7cc8 (diff)
Compile error of absent function are fixed. Check of version are removed.
git-svn-id: svn://svn.code.sf.net/p/bs2b/code/trunk/libbs2b@71 bc0edfbe-c936-4687-b64d-f70bc3985e72
-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() */