From 9e0db7d5aae31739b5814c5b9df764856a363de8 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 24 Jun 2006 09:57:28 +0000 Subject: [PATCH] simplify Originally committed as revision 5513 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffmpeg.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ffmpeg.c b/ffmpeg.c index 888319121e..717262e265 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -1375,10 +1375,8 @@ static int output_packet(AVInputStream *ist, int ist_index, ret = avcodec_encode_audio(enc, bit_buffer, bit_buffer_size, samples); } enc->frame_size = fs_tmp; - if(ret <= 0) { - ret = avcodec_encode_audio(enc, bit_buffer, bit_buffer_size, NULL); - } - } else { + } + if(ret <= 0) { ret = avcodec_encode_audio(enc, bit_buffer, bit_buffer_size, NULL); } audio_size += ret;