Commit 96747e6c authored by Michael Niedermayer's avatar Michael Niedermayer

mjpegdec: parse app-xfrm

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 7afa68d3
......@@ -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))) {
......
......@@ -66,6 +66,7 @@ typedef struct MJpegDecodeContext {
int pegasus_rct; /* pegasus reversible colorspace transform */
int bits; /* bits per component */
int colr;
int xfrm;
int maxval;
int near; ///< near lossless bound (si 0 for lossless)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment