# HG changeset patch # User benoit # Date 1224055866 0 # Node ID e50d7ac76945d6ccf0e7565944dc5c7e289feb8a # Parent 66ff451487a79e6bb97c1f6f67945256e31f6707 Cosmetics: fix indentation after previous commit. diff -r 66ff451487a7 -r e50d7ac76945 libvorbis.c --- a/libvorbis.c Wed Oct 15 07:29:37 2008 +0000 +++ b/libvorbis.c Wed Oct 15 07:31:06 2008 +0000 @@ -145,19 +145,17 @@ int samples = OGGVORBIS_FRAME_SIZE; float **buffer ; - buffer = vorbis_analysis_buffer(&context->vd, samples) ; - - if(context->vi.channels == 1) { - for(l = 0 ; l < samples ; l++) - buffer[0][l]=audio[l]/32768.f; - } else { - for(l = 0 ; l < samples ; l++){ - buffer[0][l]=audio[l*2]/32768.f; - buffer[1][l]=audio[l*2+1]/32768.f; + buffer = vorbis_analysis_buffer(&context->vd, samples) ; + if(context->vi.channels == 1) { + for(l = 0 ; l < samples ; l++) + buffer[0][l]=audio[l]/32768.f; + } else { + for(l = 0 ; l < samples ; l++){ + buffer[0][l]=audio[l*2]/32768.f; + buffer[1][l]=audio[l*2+1]/32768.f; + } } - } - - vorbis_analysis_wrote(&context->vd, samples) ; + vorbis_analysis_wrote(&context->vd, samples) ; } else { if(!context->eof) vorbis_analysis_wrote(&context->vd, 0) ;