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.
153 // to ReadSymbol, in order to pre-fetch enough bits.
318 // The huffman data is stored in red and green bytes.
439 uint8_t* in, int in_stride, int mb_h,
445 uint8_t* const row_in = in + num_lines_in * in_stride;
471 return mb_h; // Num rows out == num rows in.
477 // TODO(skal): should be in yuv.c
557 uint8_t* in, int in_stride, int mb_h) {
563 WebPMultARGBRows(in, in_stride, dec->rescaler->src_width, needed_lines, 0);
564 WebPRescalerImport(dec->rescaler, lines_left, in, in_stride);
566 in += needed_lines * in_stride;
573 const uint8_t* in, int in_stride,
577 ConvertToYUVA((const uint32_t*)in, mb_w, y_pos, dec->output_);
578 in += in_stride;
589 // start of the cropped window. Note that pixels are in ARGB format even if
681 const int in_stride = io->width * sizeof(uint32_t); // in unit of RGBA
728 const uint8_t* const in =
731 ApplyInverseTransformsAlpha(dec, num_rows, in);
981 // Each transform type can only be present once in the stream.
1169 // If not enough data (br.eos_) resulted in BIT_STREAM_ERROR, update the
1178 // We allocate image data in this function only for transforms. At level 0
1194 // first row in the row-blocks. Not needed for paletted alpha.
1228 const uint32_t* const in = dec->pixels_ + dec->width_ * dec->last_row_;
1231 ApplyInverseTransforms(dec, num_rows, in);
1233 // Extract alpha (which is stored in the green plane).