You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
lavc/mjpegdec: Set sar for multiscope videos.
Fixes decoding of the files from ticket #4535 visually.
This commit is contained in:
@@ -1878,8 +1878,10 @@ static int mjpeg_decode_com(MJpegDecodeContext *s)
|
||||
else if ((!strncmp(cbuf, "Intel(R) JPEG Library, version 1", 32) && s->avctx->codec_tag) ||
|
||||
(!strncmp(cbuf, "Metasoft MJPEG Codec", 20)))
|
||||
s->flipped = 1;
|
||||
else if (!strcmp(cbuf, "MULTISCOPE II"))
|
||||
else if (!strcmp(cbuf, "MULTISCOPE II")) {
|
||||
s->avctx->sample_aspect_ratio = (AVRational) { 1, 2 };
|
||||
s->multiscope = 2;
|
||||
}
|
||||
|
||||
av_free(cbuf);
|
||||
}
|
||||
|
Reference in New Issue
Block a user