summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2009-04-13 21:22:19 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2009-04-13 21:22:19 +0000
commitc573eb85f0eab01cd6001acfb89dc4a6725684dd (patch)
tree463b99bfa78fbcbb262d806398509ed4a159416f
parentad25b954709ca41060c3a4ca91fb9c29558e7c7c (diff)
fix indentation
Originally committed as revision 18500 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--ffmpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 619dda02d5..1a4fcfbc48 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -1468,7 +1468,7 @@ static int output_packet(AVInputStream *ist, int ist_index,
int fs_tmp = enc->frame_size;
enc->frame_size = fifo_bytes / (2 * enc->channels);
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;
}
if(ret <= 0) {