[FFmpeg-devel] [PATCH] lavc: unify similar code merged from both branches.

Nicolas George nicolas.george at normalesup.org
Sat Mar 3 11:30:14 CET 2012


Signed-off-by: Nicolas George <nicolas.george at normalesup.org>
---
 libavcodec/utils.c |   11 +++--------
 1 files changed, 3 insertions(+), 8 deletions(-)

diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index 2b6e30e..f462bd1 100644
--- a/libavcodec/utils.c
+++ b/libavcodec/utils.c
@@ -1219,15 +1219,10 @@ int attribute_align_arg avcodec_encode_video2(AVCodecContext *avctx,
             avpkt->size = 0;
         else if (!(avctx->codec->capabilities & CODEC_CAP_DELAY))
             avpkt->pts = avpkt->dts = frame->pts;
-        if (avpkt->data && avpkt->destruct == av_destruct_packet) {
-            new_data = av_realloc(avpkt->data,
-                                  avpkt->size + FF_INPUT_BUFFER_PADDING_SIZE);
-            if (new_data)
-                avpkt->data = new_data;
-        }
 
-        if (!user_packet && avpkt->data) {
-            uint8_t *new_data = av_realloc(avpkt->data, avpkt->size);
+        if (!user_packet && avpkt->data &&
+            avpkt->destruct == av_destruct_packet) {
+            uint8_t *new_data = av_realloc(avpkt->data, avpkt->size + FF_INPUT_BUFFER_PADDING_SIZE);
             if (new_data)
                 avpkt->data = new_data;
         }
-- 
1.7.9.1



More information about the ffmpeg-devel mailing list