summaryrefslogtreecommitdiffstats
path: root/video/decode/lavc.h
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/lavc.h
parent9345964bad6413a94447b3a1c79dca6b878f0ec4 (diff)
downloadmpv-643a1fc7de84b234d5a4723fa0ec31f9351e770b.tar.bz2
mpv-643a1fc7de84b234d5a4723fa0ec31f9351e770b.tar.xz
vd_lavc: remove process_image callback
Now unused.
Diffstat (limited to 'video/decode/lavc.h')
-rw-r--r--video/decode/lavc.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/video/decode/lavc.h b/video/decode/lavc.h
index 70ff4cde97..caa6200121 100644
--- a/video/decode/lavc.h
+++ b/video/decode/lavc.h
@@ -88,18 +88,15 @@ struct vd_lavc_hwdec {
int image_format;
// Always returns a non-hwaccel image format.
bool copying;
- // Setting this will queue the given number of frames before calling
- // process_image() or returning them to the renderer. This can increase
- // efficiency by not blocking on the hardware pipeline by reading back
- // immediately after decoding.
+ // Setting this will queue the given number of frames before returning them
+ // to the renderer. This can increase efficiency by not blocking on the
+ // hardware pipeline by reading back immediately after decoding.
int delay_queue;
int (*probe)(struct lavc_ctx *ctx, struct vd_lavc_hwdec *hwdec,
const char *codec);
int (*init)(struct lavc_ctx *ctx);
int (*init_decoder)(struct lavc_ctx *ctx);
void (*uninit)(struct lavc_ctx *ctx);
- // Process the image returned by the libavcodec decoder.
- struct mp_image *(*process_image)(struct lavc_ctx *ctx, struct mp_image *img);
// For copy hwdecs. If probing is true, don't log errors if unavailable.
// The returned device will be freed with mp_hwdec_ctx->destroy.
struct mp_hwdec_ctx *(*create_dev)(struct mpv_global *global,