OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:last_row_
(Results
1 - 2
of
2
) sorted by null
/external/webp/src/dec/
vp8li_dec.h
76
int
last_row_
; // last input row decoded so far.
member in struct:VP8LDecoder
vp8l_dec.c
764
const int start_row = dec->
last_row_
;
784
const uint32_t* const rows = dec->pixels_ + dec->width_ * dec->
last_row_
;
785
const int num_rows = row - dec->
last_row_
;
797
if (!SetCropWindow(io, dec->
last_row_
, row, &rows_data, in_stride)) {
823
// Update '
last_row_
'.
824
dec->
last_row_
= row;
825
assert(dec->
last_row_
<= dec->height_);
867
: dec->
last_row_
;
868
const int first_row = (dec->
last_row_
< top_row) ? top_row : dec->
last_row_
;
[
all
...]
Completed in 92 milliseconds