mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-12-19 17:47:11 +00:00
Set maximum lowres value for the MJPEG decoder to 3.
While 4 works for some samples, 3 is the correct value since 8x8 DCT is used by (m)jpeg.
This commit is contained in:
parent
d6705a27d8
commit
27a275e4bb
@ -1547,7 +1547,7 @@ AVCodec ff_mjpeg_decoder = {
|
||||
ff_mjpeg_decode_frame,
|
||||
CODEC_CAP_DR1,
|
||||
NULL,
|
||||
.max_lowres = 4,
|
||||
.max_lowres = 3,
|
||||
.long_name = NULL_IF_CONFIG_SMALL("MJPEG (Motion JPEG)"),
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user