Browse Source

libwebp: simplify AVCodec.close functions

Reviewed-by: Michael Niedermayer <michaelni@gmx.at>
Signed-off-by: James Almer <jamrial@gmail.com>
tags/n2.7
James Almer 10 years ago
parent
commit
8952254ffe
4 changed files with 9 additions and 16 deletions
  1. +4
    -1
      libavcodec/libwebpenc.c
  2. +5
    -6
      libavcodec/libwebpenc_animencoder.c
  3. +0
    -7
      libavcodec/libwebpenc_common.c
  4. +0
    -2
      libavcodec/libwebpenc_common.h

+ 4
- 1
libavcodec/libwebpenc.c View File

@@ -80,7 +80,10 @@ end:

static int libwebp_encode_close(AVCodecContext *avctx)
{
return ff_libwebp_encode_close_common(avctx);
LibWebPContextCommon *s = avctx->priv_data;
av_frame_free(&s->ref);

return 0;
}

static const AVClass class = {


+ 5
- 6
libavcodec/libwebpenc_animencoder.c View File

@@ -116,12 +116,11 @@ end:

static int libwebp_anim_encode_close(AVCodecContext *avctx)
{
int ret = ff_libwebp_encode_close_common(avctx);
if (!ret) {
LibWebPAnimContext *s = avctx->priv_data;
WebPAnimEncoderDelete(s->enc);
}
return ret;
LibWebPAnimContext *s = avctx->priv_data;
av_frame_free(&s->cc.ref);
WebPAnimEncoderDelete(s->enc);

return 0;
}

static const AVClass class = {


+ 0
- 7
libavcodec/libwebpenc_common.c View File

@@ -252,10 +252,3 @@ int ff_libwebp_get_frame(AVCodecContext *avctx, LibWebPContextCommon *s,
end:
return ret;
}

int ff_libwebp_encode_close_common(AVCodecContext *avctx)
{
LibWebPContextCommon *s = avctx->priv_data;
av_frame_free(&s->ref);
return 0;
}

+ 0
- 2
libavcodec/libwebpenc_common.h View File

@@ -57,8 +57,6 @@ int ff_libwebp_get_frame(AVCodecContext *avctx, LibWebPContextCommon *s,
const AVFrame *frame, AVFrame **alt_frame_ptr,
WebPPicture **pic_ptr);

int ff_libwebp_encode_close_common(AVCodecContext *avctx);

#define OFFSET(x) offsetof(LibWebPContextCommon, x)
#define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
static const AVOption options[] = {


Loading…
Cancel
Save