Home
last modified time | relevance | path

Searched refs:current_mba (Results 1 – 2 of 2) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dh261dec.c136 h->current_mba = 0; in h261_decode_gob_header()
377 h->current_mba += h->mba_diff; in h261_decode_mb()
379 if (h->current_mba > MBA_STUFFING) in h261_decode_mb()
382 s->mb_x = ((h->gob_number - 1) % 2) * 11 + ((h->current_mba - 1) % 11); in h261_decode_mb()
383 s->mb_y = ((h->gob_number - 1) / 2) * 3 + ((h->current_mba - 1) / 11); in h261_decode_mb()
414 if ((h->current_mba == 1) || (h->current_mba == 12) || in h261_decode_mb()
415 (h->current_mba == 23) || (h->mba_diff != 1)) { in h261_decode_mb()
544 while (h->current_mba <= MBA_STUFFING) { in h261_decode_gob()
550 h261_decode_mb_skipped(h, h->current_mba, 33); in h261_decode_gob()
559 h->current_mba - h->mba_diff, in h261_decode_gob()
[all …]
Dh261.h40 int current_mba; member