Commit 9c2ccc03 authored by bcoudurier's avatar bcoudurier

fix indentation

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18500 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 63580f48
...@@ -1468,7 +1468,7 @@ static int output_packet(AVInputStream *ist, int ist_index, ...@@ -1468,7 +1468,7 @@ static int output_packet(AVInputStream *ist, int ist_index,
int fs_tmp = enc->frame_size; int fs_tmp = enc->frame_size;
enc->frame_size = fifo_bytes / (2 * enc->channels); enc->frame_size = fifo_bytes / (2 * enc->channels);
av_fifo_generic_read(ost->fifo, samples, fifo_bytes, NULL); av_fifo_generic_read(ost->fifo, samples, fifo_bytes, NULL);
ret = avcodec_encode_audio(enc, bit_buffer, bit_buffer_size, samples); ret = avcodec_encode_audio(enc, bit_buffer, bit_buffer_size, samples);
enc->frame_size = fs_tmp; enc->frame_size = fs_tmp;
} }
if(ret <= 0) { if(ret <= 0) {
......
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