This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
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.
tags/n0.8
Carl Eugen Hoyos
14 years ago
parent
d6705a27d8
commit
27a275e4bb
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/mjpegdec.c
+ 1
- 1
libavcodec/mjpegdec.c
View File
@@ -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)"),
};
Write
Preview
Loading…
Cancel
Save