1
0
Fork 0

avcodec/libxevd: Set AV_CODEC_CAP_DR1

This decoder uses av_image_copy() to copy decoded images
to buffers obtained via ff_get_buffer(); ergo it can handle
user-provided buffers.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2024-02-27 19:07:51 +01:00
parent bbeee3339f
commit 4e14a8e6be
1 changed files with 2 additions and 1 deletions

View File

@ -531,7 +531,8 @@ const FFCodec ff_libxevd_decoder = {
.close = libxevd_close,
.priv_data_size = sizeof(XevdContext),
.p.priv_class = &libxevd_class,
.p.capabilities = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_OTHER_THREADS | AV_CODEC_CAP_AVOID_PROBING,
.p.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_DELAY |
AV_CODEC_CAP_OTHER_THREADS | AV_CODEC_CAP_AVOID_PROBING,
.p.profiles = NULL_IF_CONFIG_SMALL(ff_evc_profiles),
.p.wrapper_name = "libxevd",
.caps_internal = FF_CODEC_CAP_INIT_CLEANUP | FF_CODEC_CAP_NOT_INIT_THREADSAFE |