Commit 4efd3ec5 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/svq3: fix assert type (was av_assert2 in h264 from where this was copied)

Type was lost in f8d1bb2fSigned-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 005c61c6
......@@ -528,7 +528,7 @@ static av_always_inline void hl_decode_mb_predict_luma(const H264Context *h,
int nnz, tr;
if (dir == DIAG_DOWN_LEFT_PRED || dir == VERT_LEFT_PRED) {
const int topright_avail = (sl->topright_samples_available << i) & 0x8000;
assert(sl->mb_y || linesize <= block_offset[i]);
av_assert2(sl->mb_y || linesize <= block_offset[i]);
if (!topright_avail) {
tr = ptr[3 - linesize] * 0x01010101u;
topright = (uint8_t *)&tr;
......
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