OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mb_y_
(Results
1 - 8
of
8
) sorted by null
/external/opencv3/3rdparty/libwebp/dec/
frame.c
94
const int mb_y = dec->thread_ctx_.
mb_y_
;
175
const int first_row = (ctx->
mb_y_
== 0);
176
const int last_row = (ctx->
mb_y_
>= dec->br_mb_y_ - 1);
177
int y_start = MACROBLOCK_VPOS(ctx->
mb_y_
);
178
int y_end = MACROBLOCK_VPOS(ctx->
mb_y_
+ 1);
260
ctx->
mb_y_
= dec->
mb_y_
;
271
ctx->
mb_y_
= dec->
mb_y_
;
542
return (dec->
mb_y_
== 0) ? B_DC_PRED_NOTOPLEFT : B_DC_PRED_NOLEFT
[
all
...]
vp8i.h
176
int
mb_y_
; // macroblock position of the row
member in struct:__anon21873
260
int mb_x_,
mb_y_
; // current position, in macroblock units
member in struct:VP8Decoder
vp8.c
682
(dec->
mb_y_
>= dec->tl_mb_y_) && (dec->
mb_y_
<= dec->br_mb_y_);
686
for (dec->
mb_y_
= 0; dec->
mb_y_
< dec->br_mb_y_; ++dec->
mb_y_
) {
688
&dec->parts_[dec->
mb_y_
& (dec->num_parts_ - 1)];
idec.c
437
for (; dec->
mb_y_
< dec->mb_h_; ++dec->
mb_y_
) {
438
VP8BitReader* token_br = &dec->parts_[dec->
mb_y_
& (dec->num_parts_ - 1)];
/external/webp/src/dec/
vp8i.h
168
int
mb_y_
; // macroblock position of the row
member in struct:__anon27421
250
int mb_x_,
mb_y_
; // current position, in macroblock units
member in struct:VP8Decoder
frame.c
75
const int mb_y = ctx->
mb_y_
;
255
const int mb_y = dec->thread_ctx_.
mb_y_
;
425
const int mb_y = ctx->
mb_y_
;
516
(dec->
mb_y_
>= dec->tl_mb_y_) && (dec->
mb_y_
<= dec->br_mb_y_);
519
ctx->
mb_y_
= dec->
mb_y_
;
531
ctx->
mb_y_
= dec->
mb_y_
;
vp8.c
579
for (dec->
mb_y_
= 0; dec->
mb_y_
< dec->br_mb_y_; ++dec->
mb_y_
) {
582
&dec->parts_[dec->
mb_y_
& (dec->num_parts_ - 1)];
idec.c
448
for (; dec->
mb_y_
< dec->mb_h_; ++dec->
mb_y_
) {
449
if (idec->last_mb_y_ != dec->
mb_y_
) {
456
idec->last_mb_y_ = dec->
mb_y_
;
460
&dec->parts_[dec->
mb_y_
& (dec->num_parts_ - 1)];
Completed in 409 milliseconds