mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
mjpegdec: parse app-xfrm
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
7afa68d37d
commit
96747e6cbe
2 changed files with 8 additions and 0 deletions
|
|
@ -1469,6 +1469,13 @@ static int mjpeg_decode_app(MJpegDecodeContext *s)
|
|||
len --;
|
||||
goto out;
|
||||
}
|
||||
if (id == AV_RL32("xfrm") && len > 0) {
|
||||
s->xfrm = get_bits(&s->gb, 8);
|
||||
if (s->avctx->debug & FF_DEBUG_PICT_INFO)
|
||||
av_log(s->avctx, AV_LOG_INFO, "XFRM %d\n", s->xfrm);
|
||||
len --;
|
||||
goto out;
|
||||
}
|
||||
|
||||
/* Apple MJPEG-A */
|
||||
if ((s->start_code == APP1) && (len > (0x28 - 8))) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue