summaryrefslogtreecommitdiffstats
path: root/video/decode/vd_lavc.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/decode/vd_lavc.c')
-rw-r--r--video/decode/vd_lavc.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/video/decode/vd_lavc.c b/video/decode/vd_lavc.c
index b500bdb889..4de03e8af0 100644
--- a/video/decode/vd_lavc.c
+++ b/video/decode/vd_lavc.c
@@ -62,8 +62,6 @@ static int get_buffer2_hwdec(AVCodecContext *avctx, AVFrame *pic, int flags);
static enum AVPixelFormat get_format_hwdec(struct AVCodecContext *avctx,
const enum AVPixelFormat *pix_fmt);
-static void uninit(struct dec_video *vd);
-
#define OPT_BASE_STRUCT struct vd_lavc_params
struct vd_lavc_params {
@@ -254,6 +252,11 @@ static struct vd_lavc_hwdec *probe_hwdec(struct dec_video *vd, bool autoprobe,
return NULL;
}
+static void uninit(struct dec_video *vd)
+{
+ uninit_avctx(vd);
+ talloc_free(vd->priv);
+}
static int init(struct dec_video *vd, const char *decoder)
{
@@ -439,11 +442,6 @@ static void uninit_avctx(struct dec_video *vd)
av_frame_free(&ctx->pic);
}
-static void uninit(struct dec_video *vd)
-{
- uninit_avctx(vd);
-}
-
static void update_image_params(struct dec_video *vd, AVFrame *frame,
struct mp_image_params *out_params)
{