diff options
author | Mikhail Burakov <mburakov@mailbox.org> | 2024-09-20 15:47:05 +0200 |
---|---|---|
committer | Mikhail Burakov <mburakov@mailbox.org> | 2024-09-20 15:47:05 +0200 |
commit | 9fd565fc7ab950ac61f7ea7c0376936aa04aa2ea (patch) | |
tree | 50060388c84e116f84113ea315a536729fc4c379 /encode_context.h | |
parent | b376d179dbf7645d356db52e56e7851f382d2092 (diff) |
Recovering hevc encoding with va (WIP)
Diffstat (limited to 'encode_context.h')
-rw-r--r-- | encode_context.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/encode_context.h b/encode_context.h index 88d4d30..b2724b3 100644 --- a/encode_context.h +++ b/encode_context.h @@ -24,6 +24,7 @@ struct EncodeContext; struct IoContext; +struct wl_display; struct EncodeContextFrame { void* user_data; @@ -35,7 +36,8 @@ struct EncodeContextFrame { }; struct EncodeContext* EncodeContextCreate(struct IoContext* io_context, - uint32_t width, uint32_t height); + uint32_t width, uint32_t height, + struct wl_display* display); struct EncodeContextFrame* EncodeContextDequeue( struct EncodeContext* encode_context); bool EncodeContextQueue(struct EncodeContext* encode_context, |