From 525c22cef30fafb4489adc41d8e8d9419da303c6 Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Tue, 5 Jun 2001 22:45:50 +0000 Subject: [PATCH] remove debug printouts --- src/libFLAC/encoder.c | 20 +++----------------- src/libFLAC/stream_decoder.c | 2 -- 2 files changed, 3 insertions(+), 19 deletions(-) diff --git a/src/libFLAC/encoder.c b/src/libFLAC/encoder.c index 19647ae..3f84225 100644 --- a/src/libFLAC/encoder.c +++ b/src/libFLAC/encoder.c @@ -339,39 +339,25 @@ FLAC__EncoderState FLAC__encoder_init(FLAC__Encoder *encoder, FLAC__EncoderWrite #ifdef FLAC__HAS_NASM if(0 && encoder->guts->cpuinfo.data.ia32.sse) { /* SSE version lacks necessary resolution, plus SSE flag doesn't check for OS support */ if(encoder->max_lpc_order < 4) -{//@@@ - encoder->guts->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_i386_sse_lag_4; -fprintf(stderr,"@@@ got _asm_i386_sse_lag_4 of lpc_compute_autocorrelation()\n");} + encoder->guts->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_i386_sse_lag_4; else if(encoder->max_lpc_order < 8) -{//@@@ - encoder->guts->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_i386_sse_lag_8; -fprintf(stderr,"@@@ got _asm_i386_sse_lag_8 of lpc_compute_autocorrelation()\n");} + encoder->guts->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_i386_sse_lag_8; else if(encoder->max_lpc_order < 12) -{//@@@ - encoder->guts->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_i386_sse_lag_12; -fprintf(stderr,"@@@ got _asm_i386_sse_lag_12 of lpc_compute_autocorrelation()\n");} + encoder->guts->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_i386_sse_lag_12; else -{//@@@ encoder->guts->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_i386; -fprintf(stderr,"@@@ got _asm_i386 of lpc_compute_autocorrelation()\n");} } else -{//@@@ encoder->guts->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_i386; -fprintf(stderr,"@@@ got _asm_i386 of lpc_compute_autocorrelation()\n");} if(encoder->guts->cpuinfo.data.ia32.mmx && encoder->guts->cpuinfo.data.ia32.cmov) -{//@@@ encoder->guts->local_fixed_compute_best_predictor = FLAC__fixed_compute_best_predictor_asm_i386_mmx_cmov; -fprintf(stderr,"@@@ got _asm_i386_mmx_cmov of fixed_compute_best_predictor()\n");} if(encoder->guts->cpuinfo.data.ia32.mmx) { encoder->guts->local_lpc_compute_residual_from_qlp_coefficients = FLAC__lpc_compute_residual_from_qlp_coefficients_asm_i386; encoder->guts->local_lpc_compute_residual_from_qlp_coefficients_16bit = FLAC__lpc_compute_residual_from_qlp_coefficients_asm_i386_mmx; -fprintf(stderr,"@@@ got _asm_i386_mmx of lpc_compute_residual_from_qlp_coefficients()\n"); } else { encoder->guts->local_lpc_compute_residual_from_qlp_coefficients = FLAC__lpc_compute_residual_from_qlp_coefficients_asm_i386; encoder->guts->local_lpc_compute_residual_from_qlp_coefficients_16bit = FLAC__lpc_compute_residual_from_qlp_coefficients_asm_i386; -fprintf(stderr,"@@@ got _asm_i386 of lpc_compute_residual_from_qlp_coefficients()\n"); } #endif #endif diff --git a/src/libFLAC/stream_decoder.c b/src/libFLAC/stream_decoder.c index 910b3ee..9144077 100644 --- a/src/libFLAC/stream_decoder.c +++ b/src/libFLAC/stream_decoder.c @@ -177,12 +177,10 @@ FLAC__StreamDecoderState FLAC__stream_decoder_init( if(decoder->guts->cpuinfo.data.ia32.mmx) { decoder->guts->local_lpc_restore_signal = FLAC__lpc_restore_signal_asm_i386; decoder->guts->local_lpc_restore_signal_16bit = FLAC__lpc_restore_signal_asm_i386_mmx; -fprintf(stderr,"@@@ got _asm_i386_mmx of lpc_restore_signal()\n"); } else { decoder->guts->local_lpc_restore_signal = FLAC__lpc_restore_signal_asm_i386; decoder->guts->local_lpc_restore_signal_16bit = FLAC__lpc_restore_signal_asm_i386; -fprintf(stderr,"@@@ got _asm_i386 of lpc_restore_signal()\n"); } #endif #endif -- 2.7.4