summaryrefslogtreecommitdiff
path: root/libavcodec/svq3.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2016-04-26 20:45:56 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2016-04-26 21:45:47 +0200
commit4efd3ec50a5442ac854d84c5ace94052692c10cd (patch)
treea71cc59657c5c87053af1314f21d3aabf40e3915 /libavcodec/svq3.c
parent005c61c6b8982f977e415aa69d2d2b42e6b7f3f2 (diff)
avcodec/svq3: fix assert type (was av_assert2 in h264 from where this was copied)
Type was lost in f8d1bb2f2ce9031940019e1cda4d30bc409ee349 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/svq3.c')
-rw-r--r--libavcodec/svq3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c
index bf9e591724..608f8172e2 100644
--- a/libavcodec/svq3.c
+++ b/libavcodec/svq3.c
@@ -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;