mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/yop: Add missing AV_CODEC_CAP_DR1
This decoder does not do anything fancy any more sincec6303f8d70
(before that, it overwrote the frame's linesize) so that it supports direct rendering. This effectively revertsd3de3a16d1
. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
df3cdf4c75
commit
2a00d68c09
@ -274,6 +274,7 @@ const FFCodec ff_yop_decoder = {
|
||||
CODEC_LONG_NAME("Psygnosis YOP Video"),
|
||||
.p.type = AVMEDIA_TYPE_VIDEO,
|
||||
.p.id = AV_CODEC_ID_YOP,
|
||||
.p.capabilities = AV_CODEC_CAP_DR1,
|
||||
.priv_data_size = sizeof(YopDecContext),
|
||||
.init = yop_decode_init,
|
||||
.close = yop_decode_close,
|
||||
|
Loading…
Reference in New Issue
Block a user