Searched refs:blocklist_length (Results 1 - 1 of 1) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A D | error_resilience.c | 380 static av_always_inline void add_blocklist(int (*blocklist)[2], int *blocklist_length, uint8_t *fixed, int mb_x, int mb_y, int mb_xy) in add_blocklist() argument 385 blocklist[ *blocklist_length ][0] = mb_x; in add_blocklist() 386 blocklist[(*blocklist_length)++][1] = mb_y; in add_blocklist() 399 int blocklist_length, next_blocklist_length; in guess_mv() local 459 blocklist_length = 0; in guess_mv() 464 if (mb_x) add_blocklist(blocklist, &blocklist_length, fixed, mb_x - 1, mb_y, mb_xy - 1); in guess_mv() 465 if (mb_y) add_blocklist(blocklist, &blocklist_length, fixed, mb_x, mb_y - 1, mb_xy - mb_stride); in guess_mv() 466 if (mb_x+1 < mb_width) add_blocklist(blocklist, &blocklist_length, fixed, mb_x + 1, mb_y, mb_xy + 1); in guess_mv() 467 if (mb_y+1 < mb_height) add_blocklist(blocklist, &blocklist_length, fixed, mb_x, mb_y + 1, mb_xy + mb_stride); in guess_mv() 480 for (blocklist_index = 0; blocklist_index < blocklist_length; blocklist_inde in guess_mv() [all...] |
Completed in 4 milliseconds