From 1463bd902a44ad3f12f77e1876b91d79ff31d952 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Sun, 15 Jul 2012 02:31:40 +0000 Subject: [PATCH] cosmetics: reindent after d3abbb1d1 Signed-off-by: Paul B Mahol --- libavcodec/utils.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 2d87fa83be..78e0e11fbe 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -1021,13 +1021,13 @@ int ff_alloc_packet2(AVCodecContext *avctx, AVPacket *avpkt, int size) } if (avctx) { - av_assert0(!avpkt->data || avpkt->data != avctx->internal->byte_buffer); - if (!avpkt->data || avpkt->size < size) { - av_fast_padded_malloc(&avctx->internal->byte_buffer, &avctx->internal->byte_buffer_size, size); - avpkt->data = avctx->internal->byte_buffer; - avpkt->size = avctx->internal->byte_buffer_size; - avpkt->destruct = NULL; - } + av_assert0(!avpkt->data || avpkt->data != avctx->internal->byte_buffer); + if (!avpkt->data || avpkt->size < size) { + av_fast_padded_malloc(&avctx->internal->byte_buffer, &avctx->internal->byte_buffer_size, size); + avpkt->data = avctx->internal->byte_buffer; + avpkt->size = avctx->internal->byte_buffer_size; + avpkt->destruct = NULL; + } } if (avpkt->data) {