# HG changeset patch # User nenolod # Date 1159675908 25200 # Node ID d42917f142b564a6a749ce33b3d2d3186df83847 # Parent 96901271d2e250f44dde015a74f8b6555fd735d9 [svn] - remove debugging notices diff -r 96901271d2e2 -r d42917f142b5 ChangeLog --- a/ChangeLog Sat Sep 30 20:58:51 2006 -0700 +++ b/ChangeLog Sat Sep 30 21:11:48 2006 -0700 @@ -1,3 +1,13 @@ +2006-10-01 03:58:51 +0000 William Pitcock + revision [114] + - fix crashing. works on my x64 box, static on bigendian (tested: x64-be, mips, ppc64) + + trunk/src/alac/alac.c | 39 +++++++++++++++++++++++---------------- + trunk/src/alac/plugin.c | 31 +++++++++++++++++++------------ + trunk/src/alac/stream.c | 8 ++------ + 3 files changed, 44 insertions(+), 34 deletions(-) + + 2006-10-01 02:26:34 +0000 William Pitcock revision [112] - experimental ALAC plugin -- don't use this, it crashes diff -r 96901271d2e2 -r d42917f142b5 src/alac/plugin.c --- a/src/alac/plugin.c Sat Sep 30 20:58:51 2006 -0700 +++ b/src/alac/plugin.c Sat Sep 30 21:11:48 2006 -0700 @@ -46,9 +46,6 @@ static int input_opened = 0; static stream_t *input_stream; -static int write_wav_format = 0; -static int verbose = 1; - gpointer decode_thread(void *args); static GThread *playback_thread; @@ -216,13 +213,8 @@ /* write */ bytes_read += outputBytes; - if (verbose) - fprintf(stderr, "read %i bytes. total: %i\n", outputBytes, bytes_read); - produce_audio(alac_ip.output->written_time(), FMT_S16_LE, demux_res->num_channels, outputBytes, pDestBuffer, &going); } - if (verbose) - fprintf(stderr, "done reading, read %i frames\n", i); } static void init_sound_converter(demux_res_t *demux_res)