Home | History | Annotate | Download | only in dec

Lines Matching defs:in

4 // that can be found in the COPYING file in the root of the source
6 // in the file PATENTS. All contributing project authors may
7 // be found in the AUTHORS file in the root of the source tree.
81 // distance) and lookup table sizes for them in worst case are 630 and 410
181 // to ReadSymbol, in order to pre-fetch enough bits.
383 // The huffman data is stored in red and green bytes.
540 uint8_t* in, int in_stride, int mb_h,
546 uint8_t* const row_in = in + num_lines_in * in_stride;
572 return mb_h; // Num rows out == num rows in.
620 uint8_t* in, int in_stride, int mb_h) {
626 WebPMultARGBRows(in, in_stride, dec->rescaler->src_width, needed_lines, 0);
627 WebPRescalerImport(dec->rescaler, lines_left, in, in_stride);
629 in += needed_lines * in_stride;
636 const uint8_t* in, int in_stride,
640 ConvertToYUVA((const uint32_t*)in, mb_w, y_pos, dec->output_);
641 in += in_stride;
652 // start of the cropped window. Note that pixels are in ARGB format even if
744 const int in_stride = io->width * sizeof(uint32_t); // in unit of RGBA
791 const uint8_t* const in =
794 ApplyInverseTransformsAlpha(dec, num_rows, in);
1201 // Each transform type can only be present once in the stream.
1393 // We allocate image data in this function only for transforms. At level 0
1409 // first row in the row-blocks. Not needed for paletted alpha.
1443 const uint32_t* const in = dec->pixels_ + dec->width_ * dec->last_row_;
1446 ApplyInverseTransforms(dec, num_rows, in);
1448 // Extract alpha (which is stored in the green plane).