aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/adpcmenc.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2012-03-22 20:22:39 +0000
committerMichael Niedermayer <michaelni@gmx.at>2012-03-23 03:09:07 +0100
commitae2c33b0c28ec9dd2c78538062798f6dace6b20b (patch)
tree4da5beb4b30645d5878e898e598b9a50671b09a9 /libavcodec/adpcmenc.c
parent0e465c1a81fda00a6e00645e99e4cc82144176ed (diff)
downloadandroid_external_ffmpeg-ae2c33b0c28ec9dd2c78538062798f6dace6b20b.tar.gz
android_external_ffmpeg-ae2c33b0c28ec9dd2c78538062798f6dace6b20b.tar.bz2
android_external_ffmpeg-ae2c33b0c28ec9dd2c78538062798f6dace6b20b.zip
cosmetics: remove superfluous curly brackets
Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/adpcmenc.c')
-rw-r--r--libavcodec/adpcmenc.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/adpcmenc.c b/libavcodec/adpcmenc.c
index d2a17c5586..e46e6f240b 100644
--- a/libavcodec/adpcmenc.c
+++ b/libavcodec/adpcmenc.c
@@ -494,9 +494,8 @@ static int adpcm_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
pkt_size = (2 + avctx->channels * (22 + 4 * (frame->nb_samples - 1)) + 7) / 8;
else
pkt_size = avctx->block_align;
- if ((ret = ff_alloc_packet2(avctx, avpkt, pkt_size))) {
+ if ((ret = ff_alloc_packet2(avctx, avpkt, pkt_size)))
return ret;
- }
dst = avpkt->data;
switch(avctx->codec->id) {