Commit c06e9101 authored by benoit's avatar benoit

Cosmetics: fix indentation after previous commit.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15621 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 5dc4e28d
...@@ -146,7 +146,6 @@ static int oggvorbis_encode_frame(AVCodecContext *avccontext, ...@@ -146,7 +146,6 @@ static int oggvorbis_encode_frame(AVCodecContext *avccontext,
float **buffer ; float **buffer ;
buffer = vorbis_analysis_buffer(&context->vd, samples) ; buffer = vorbis_analysis_buffer(&context->vd, samples) ;
if(context->vi.channels == 1) { if(context->vi.channels == 1) {
for(l = 0 ; l < samples ; l++) for(l = 0 ; l < samples ; l++)
buffer[0][l]=audio[l]/32768.f; buffer[0][l]=audio[l]/32768.f;
...@@ -156,7 +155,6 @@ static int oggvorbis_encode_frame(AVCodecContext *avccontext, ...@@ -156,7 +155,6 @@ static int oggvorbis_encode_frame(AVCodecContext *avccontext,
buffer[1][l]=audio[l*2+1]/32768.f; buffer[1][l]=audio[l*2+1]/32768.f;
} }
} }
vorbis_analysis_wrote(&context->vd, samples) ; vorbis_analysis_wrote(&context->vd, samples) ;
} else { } else {
if(!context->eof) if(!context->eof)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment