summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2021-02-27 00:12:18 -0300
committerJames Almer <jamrial@gmail.com>2021-02-27 11:21:40 -0300
commit0c902a61471a2f45e1c7159bd77146d2b499abb3 (patch)
tree21422ba901655917a15cee14bfa6e52a619334e4 /libavcodec
parent173d902cd154efe239117a728749ea476c47b638 (diff)
avcodec/avrndec: remove max_lowres value
The decoder does not support lowres since 9e4225cf7f. Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/avrndec.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/avrndec.c b/libavcodec/avrndec.c
index 26cf6b752c..477afd8bf1 100644
--- a/libavcodec/avrndec.c
+++ b/libavcodec/avrndec.c
@@ -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,
};