diff options
author | James Almer <jamrial@gmail.com> | 2021-02-27 00:12:18 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2021-02-27 11:21:40 -0300 |
commit | 0c902a61471a2f45e1c7159bd77146d2b499abb3 (patch) | |
tree | 21422ba901655917a15cee14bfa6e52a619334e4 | |
parent | 173d902cd154efe239117a728749ea476c47b638 (diff) | |
download | ffmpeg-0c902a61471a2f45e1c7159bd77146d2b499abb3.tar.gz |
avcodec/avrndec: remove max_lowres value
The decoder does not support lowres since 9e4225cf7f.
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavcodec/avrndec.c | 1 |
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, }; |