avcodec/avrndec: remove max_lowres value

The decoder does not support lowres since 9e4225cf7f.

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2021-02-27 00:12:18 -03:00
parent 173d902cd1
commit 0c902a6147

View 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,
};