remove redundant av_init_packet after av_packet_unref. av_packet_unref have call av_init_packet and reset the packet size.
Signed-off-by: Jun Zhao <[email protected]> --- libavcodec/encode.c | 4 ---- 1 files changed, 0 insertions(+), 4 deletions(-) diff --git a/libavcodec/encode.c b/libavcodec/encode.c index d976151..0ebd8dd 100644 --- a/libavcodec/encode.c +++ b/libavcodec/encode.c @@ -135,7 +135,6 @@ int attribute_align_arg avcodec_encode_audio2(AVCodecContext *avctx, if (!(avctx->codec->capabilities & AV_CODEC_CAP_DELAY) && !frame) { av_packet_unref(avpkt); - av_init_packet(avpkt); return 0; } @@ -241,7 +240,6 @@ int attribute_align_arg avcodec_encode_audio2(AVCodecContext *avctx, if (ret < 0 || !*got_packet_ptr) { av_packet_unref(avpkt); - av_init_packet(avpkt); goto end; } @@ -282,8 +280,6 @@ int attribute_align_arg avcodec_encode_video2(AVCodecContext *avctx, if (!(avctx->codec->capabilities & AV_CODEC_CAP_DELAY) && !frame) { av_packet_unref(avpkt); - av_init_packet(avpkt); - avpkt->size = 0; return 0; } -- 1.7.1 _______________________________________________ ffmpeg-devel mailing list [email protected] http://ffmpeg.org/mailman/listinfo/ffmpeg-devel
