summaryrefslogtreecommitdiffstats
path: root/video/decode/lavc.h
diff options
context:
space:
mode:
Diffstat (limited to 'video/decode/lavc.h')
-rw-r--r--video/decode/lavc.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/video/decode/lavc.h b/video/decode/lavc.h
index 9ef74668d8..826edbff83 100644
--- a/video/decode/lavc.h
+++ b/video/decode/lavc.h
@@ -49,8 +49,13 @@ struct vd_lavc_hwdec {
// If not-0: the IMGFMT_ format that should be accepted in the libavcodec
// get_format callback.
int image_format;
+ // 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.
+ int delay_queue;
int (*probe)(struct vd_lavc_hwdec *hwdec, struct mp_hwdec_info *info,
- const char *decoder);
+ const char *codec);
int (*init)(struct lavc_ctx *ctx);
int (*init_decoder)(struct lavc_ctx *ctx, int w, int h);
void (*uninit)(struct lavc_ctx *ctx);
@@ -80,7 +85,7 @@ struct hwdec_profile_entry {
const struct hwdec_profile_entry *hwdec_find_profile(
struct lavc_ctx *ctx, const struct hwdec_profile_entry *table);
-bool hwdec_check_codec_support(const char *decoder,
+bool hwdec_check_codec_support(const char *codec,
const struct hwdec_profile_entry *table);
int hwdec_get_max_refs(struct lavc_ctx *ctx);