]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/avrndec: remove max_lowres value
authorJames Almer <jamrial@gmail.com>
Sat, 27 Feb 2021 03:12:18 +0000 (00:12 -0300)
committerJames Almer <jamrial@gmail.com>
Sat, 27 Feb 2021 14:21:40 +0000 (11:21 -0300)
The decoder does not support lowres since 9e4225cf7f.

Signed-off-by: James Almer <jamrial@gmail.com>
libavcodec/avrndec.c

index 26cf6b752c0cfaa1da2ba0e7286d26595508268d..477afd8bf1630a8b687885853e1d4e44ffba58dc 100644 (file)
@@ -97,7 +97,6 @@ AVCodec ff_avrn_decoder = {
     .priv_data_size = sizeof(AVRnContext),
     .init           = init,
     .decode         = decode_frame,
-    .max_lowres     = 3,
     .capabilities   = AV_CODEC_CAP_DR1,
     .caps_internal  = FF_CODEC_CAP_INIT_THREADSAFE | FF_CODEC_CAP_INIT_CLEANUP,
 };