summaryrefslogtreecommitdiffstats
path: root/video/decode/vd_lavc.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-12-01 05:29:34 +0100
committerwm4 <wm4@nowhere>2017-12-01 05:57:41 +0100
commit643a1fc7de84b234d5a4723fa0ec31f9351e770b (patch)
tree3954218cc5b7b2a16a164ba1c20d5af90b41e948 /video/decode/vd_lavc.c
parent9345964bad6413a94447b3a1c79dca6b878f0ec4 (diff)
downloadmpv-643a1fc7de84b234d5a4723fa0ec31f9351e770b.tar.bz2
mpv-643a1fc7de84b234d5a4723fa0ec31f9351e770b.tar.xz
vd_lavc: remove process_image callback
Now unused.
Diffstat (limited to 'video/decode/vd_lavc.c')
-rw-r--r--video/decode/vd_lavc.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/video/decode/vd_lavc.c b/video/decode/vd_lavc.c
index 21e86b91b2..5b5a7c47fb 100644
--- a/video/decode/vd_lavc.c
+++ b/video/decode/vd_lavc.c
@@ -1092,9 +1092,6 @@ static bool receive_frame(struct dec_video *vd, struct mp_image **out_image)
struct mp_image *res = ctx->delay_queue[0];
MP_TARRAY_REMOVE_AT(ctx->delay_queue, ctx->num_delay_queue, 0);
- if (ctx->hwdec && ctx->hwdec->process_image)
- res = ctx->hwdec->process_image(ctx, res);
-
res = res ? mp_img_swap_to_native(res) : NULL;
if (!res)
return progress;