avcodec: use av_frame_free() for coded_frame

pull/117/head
Clément Bœsch 10 years ago
parent cb39fe9336
commit 546d69eb43
  1. 2
      libavcodec/avuienc.c
  2. 4
      libavcodec/libopenjpegenc.c
  3. 2
      libavcodec/libtheoraenc.c
  4. 2
      libavcodec/libutvideoenc.cpp
  5. 2
      libavcodec/libvpxenc.c
  6. 2
      libavcodec/proresenc_anatoliy.c
  7. 2
      libavcodec/r210enc.c
  8. 2
      libavcodec/utvideoenc.c
  9. 2
      libavcodec/v210enc.c
  10. 2
      libavcodec/v308enc.c
  11. 2
      libavcodec/v408enc.c
  12. 2
      libavcodec/v410enc.c
  13. 2
      libavcodec/xfaceenc.c
  14. 2
      libavcodec/y41penc.c
  15. 2
      libavcodec/yuv4enc.c

@ -99,7 +99,7 @@ static int avui_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
static av_cold int avui_encode_close(AVCodecContext *avctx)
{
av_freep(&avctx->coded_frame);
av_frame_free(&avctx->coded_frame);
return 0;
}

@ -250,7 +250,7 @@ static av_cold int libopenjpeg_encode_init(AVCodecContext *avctx)
fail:
opj_image_destroy(ctx->image);
ctx->image = NULL;
av_freep(&avctx->coded_frame);
av_frame_free(&avctx->coded_frame);
return err;
}
@ -605,7 +605,7 @@ static av_cold int libopenjpeg_encode_close(AVCodecContext *avctx)
opj_image_destroy(ctx->image);
ctx->image = NULL;
av_freep(&avctx->coded_frame);
av_frame_free(&avctx->coded_frame);
return 0;
}

@ -359,7 +359,7 @@ static av_cold int encode_close(AVCodecContext* avc_context)
th_encode_free(h->t_state);
av_freep(&h->stats);
av_freep(&avc_context->coded_frame);
av_frame_free(&avc_context->coded_frame);
av_freep(&avc_context->stats_out);
av_freep(&avc_context->extradata);
avc_context->extradata_size = 0;

@ -209,7 +209,7 @@ static av_cold int utvideo_encode_close(AVCodecContext *avctx)
{
UtVideoContext *utv = (UtVideoContext *)avctx->priv_data;
av_freep(&avctx->coded_frame);
av_frame_free(&avctx->coded_frame);
av_freep(&avctx->extradata);
av_freep(&utv->buffer);

@ -253,7 +253,7 @@ static av_cold int vp8_free(AVCodecContext *avctx)
if (ctx->is_alpha)
vpx_codec_destroy(&ctx->encoder_alpha);
av_freep(&ctx->twopass_stats.buf);
av_freep(&avctx->coded_frame);
av_frame_free(&avctx->coded_frame);
av_freep(&avctx->stats_out);
free_frame_list(ctx->coded_frame_list);
return 0;

@ -601,7 +601,7 @@ static av_cold int prores_encode_init(AVCodecContext *avctx)
static av_cold int prores_encode_close(AVCodecContext *avctx)
{
ProresContext* ctx = avctx->priv_data;
av_freep(&avctx->coded_frame);
av_frame_free(&avctx->coded_frame);
av_freep(&ctx->fill_y);
return 0;

@ -80,7 +80,7 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
static av_cold int encode_close(AVCodecContext *avctx)
{
av_freep(&avctx->coded_frame);
av_frame_free(&avctx->coded_frame);
return 0;
}

@ -48,7 +48,7 @@ static av_cold int utvideo_encode_close(AVCodecContext *avctx)
UtvideoContext *c = avctx->priv_data;
int i;
av_freep(&avctx->coded_frame);
av_frame_free(&avctx->coded_frame);
av_freep(&c->slice_bits);
for (i = 0; i < 4; i++)
av_freep(&c->slice_buffer[i]);

@ -215,7 +215,7 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
static av_cold int encode_close(AVCodecContext *avctx)
{
av_freep(&avctx->coded_frame);
av_frame_free(&avctx->coded_frame);
return 0;
}

@ -77,7 +77,7 @@ static int v308_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
static av_cold int v308_encode_close(AVCodecContext *avctx)
{
av_freep(&avctx->coded_frame);
av_frame_free(&avctx->coded_frame);
return 0;
}

@ -82,7 +82,7 @@ static int v408_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
static av_cold int v408_encode_close(AVCodecContext *avctx)
{
av_freep(&avctx->coded_frame);
av_frame_free(&avctx->coded_frame);
return 0;
}

@ -81,7 +81,7 @@ static int v410_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
static av_cold int v410_encode_close(AVCodecContext *avctx)
{
av_freep(&avctx->coded_frame);
av_frame_free(&avctx->coded_frame);
return 0;
}

@ -223,7 +223,7 @@ static int xface_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
static av_cold int xface_encode_close(AVCodecContext *avctx)
{
av_freep(&avctx->coded_frame);
av_frame_free(&avctx->coded_frame);
return 0;
}

@ -84,7 +84,7 @@ static int y41p_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
static av_cold int y41p_encode_close(AVCodecContext *avctx)
{
av_freep(&avctx->coded_frame);
av_frame_free(&avctx->coded_frame);
return 0;
}

@ -74,7 +74,7 @@ static int yuv4_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
static av_cold int yuv4_encode_close(AVCodecContext *avctx)
{
av_freep(&avctx->coded_frame);
av_frame_free(&avctx->coded_frame);
return 0;
}

Loading…
Cancel
Save