mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-04 05:43:16 +00:00
h264_mc_template: switch to av_assert
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
38d1c5a4cc
commit
b0c51bbcd1
@ -71,7 +71,7 @@ static void MCFUNC(hl_motion)(H264Context *h, uint8_t *dest_y,
|
|||||||
const int mb_xy = h->mb_xy;
|
const int mb_xy = h->mb_xy;
|
||||||
const int mb_type = s->current_picture.f.mb_type[mb_xy];
|
const int mb_type = s->current_picture.f.mb_type[mb_xy];
|
||||||
|
|
||||||
assert(IS_INTER(mb_type));
|
av_assert2(IS_INTER(mb_type));
|
||||||
|
|
||||||
if (HAVE_THREADS && (s->avctx->active_thread_type & FF_THREAD_FRAME))
|
if (HAVE_THREADS && (s->avctx->active_thread_type & FF_THREAD_FRAME))
|
||||||
await_references(h);
|
await_references(h);
|
||||||
@ -103,7 +103,7 @@ static void MCFUNC(hl_motion)(H264Context *h, uint8_t *dest_y,
|
|||||||
} else {
|
} else {
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
assert(IS_8X8(mb_type));
|
av_assert2(IS_8X8(mb_type));
|
||||||
|
|
||||||
for (i = 0; i < 4; i++) {
|
for (i = 0; i < 4; i++) {
|
||||||
const int sub_mb_type = h->sub_mb_type[i];
|
const int sub_mb_type = h->sub_mb_type[i];
|
||||||
@ -141,7 +141,7 @@ static void MCFUNC(hl_motion)(H264Context *h, uint8_t *dest_y,
|
|||||||
IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1));
|
IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1));
|
||||||
} else {
|
} else {
|
||||||
int j;
|
int j;
|
||||||
assert(IS_SUB_4X4(sub_mb_type));
|
av_assert2(IS_SUB_4X4(sub_mb_type));
|
||||||
for (j = 0; j < 4; j++) {
|
for (j = 0; j < 4; j++) {
|
||||||
int sub_x_offset = x_offset + 2 * (j & 1);
|
int sub_x_offset = x_offset + 2 * (j & 1);
|
||||||
int sub_y_offset = y_offset + (j & 2);
|
int sub_y_offset = y_offset + (j & 2);
|
||||||
|
Loading…
Reference in New Issue
Block a user