summaryrefslogtreecommitdiff
path: root/libavcodec/alacenc.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/alacenc.c')
-rw-r--r--libavcodec/alacenc.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/alacenc.c b/libavcodec/alacenc.c
index a545b095e4..0194e2fecc 100644
--- a/libavcodec/alacenc.c
+++ b/libavcodec/alacenc.c
@@ -552,9 +552,8 @@ static int alac_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
else
max_frame_size = s->max_coded_frame_size;
- if ((ret = ff_alloc_packet2(avctx, avpkt, 2 * max_frame_size))) {
+ if ((ret = ff_alloc_packet2(avctx, avpkt, 2 * max_frame_size)))
return ret;
- }
/* use verbatim mode for compression_level 0 */
s->verbatim = !s->compression_level;