Merge commit '5f30c6c8ed1f006c1b3a547dfe388f3a4a080e4d'
Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
97f7586cd6
@ -730,7 +730,7 @@ static int smka_decode_frame(AVCodecContext *avctx, void *data,
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
pred[1] += sign_extend(h[1].values[res], 8);
|
||||
*samples8++ = av_clip_uint8(pred[1]);
|
||||
*samples8++ = pred[1];
|
||||
} else {
|
||||
if(vlc[0].table)
|
||||
res = get_vlc2(&gb, vlc[0].table, SMKTREE_BITS, 3);
|
||||
@ -741,7 +741,7 @@ static int smka_decode_frame(AVCodecContext *avctx, void *data,
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
pred[0] += sign_extend(h[0].values[res], 8);
|
||||
*samples8++ = av_clip_uint8(pred[0]);
|
||||
*samples8++ = pred[0];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user