Searched defs:y_start (Results 1 - 10 of 10) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Dfilters_neon.c68 const int16_t* y_start = x_start + i; local
71 y_v = vld1q_s16(y_start);
81 y_start += 8;
87 int16x4_t y2_v = vld1_s16(y_start);
91 y_start += 4;
102 prod_tail += *x_start * *y_start;
104 ++y_start;
/external/webrtc/talk/media/base/
H A Dyuvframegenerator.cc282 int y_start,
288 for (int y = y_start; y < y_start + height; y++) {
280 DrawBlockRectangle(uint8_t* p, int x_start, int y_start, int width, int height, int pitch, uint8_t value) argument
/external/libvpx/libvpx/vp9/common/
H A Dvp9_reconinter.c192 const int y_start = (-xd->mb_to_top_edge >> (3 + pd->subsampling_y)); local
200 pre_buf->buf += scaled_buffer_offset(x_start + x, y_start + y,
/external/opencv3/3rdparty/libwebp/dec/
H A Dframe.c177 int y_start = MACROBLOCK_VPOS(ctx->mb_y_); local
186 y_start -= extra_y_rows;
203 if (dec->alpha_data_ != NULL && y_start < y_end) {
209 io->a = VP8DecompressAlphaRows(dec, y_start, y_end - y_start);
215 if (y_start < io->crop_top) {
216 const int delta_y = io->crop_top - y_start;
217 y_start = io->crop_top;
226 if (y_start < y_end) {
233 io->mb_y = y_start
[all...]
H A Dvp8l.c568 static int SetCropWindow(VP8Io* const io, int y_start, int y_end, argument
570 assert(y_start < y_end);
575 if (y_start < io->crop_top) {
576 const int delta = io->crop_top - y_start;
577 y_start = io->crop_top;
580 if (y_start >= y_end) return 0; // Crop window is empty.
584 io->mb_y = y_start - io->crop_top;
586 io->mb_h = y_end - y_start;
/external/webp/src/dec/
H A Dframe.c442 int y_start = MACROBLOCK_VPOS(mb_y); local
445 y_start -= extra_y_rows;
462 if (dec->alpha_data_ != NULL && y_start < y_end) {
465 io->a = VP8DecompressAlphaRows(dec, y_start, y_end - y_start);
471 if (y_start < io->crop_top) {
472 const int delta_y = io->crop_top - y_start;
473 y_start = io->crop_top;
482 if (y_start < y_end) {
489 io->mb_y = y_start
[all...]
H A Dvp8l.c655 static int SetCropWindow(VP8Io* const io, int y_start, int y_end, argument
657 assert(y_start < y_end);
662 if (y_start < io->crop_top) {
663 const int delta = io->crop_top - y_start;
664 y_start = io->crop_top;
667 if (y_start >= y_end) return 0; // Crop window is empty.
671 io->mb_y = y_start - io->crop_top;
673 io->mb_h = y_end - y_start;
/external/webp/src/dsp/
H A Dlossless.c180 int y_start, int y_end, uint32_t* data) {
182 if (y_start == 0) { // First Row follows the L (mode=1) mode.
191 ++y_start;
195 int y = y_start;
282 int y_start, int y_end, uint32_t* data) {
289 int y = y_start;
318 TYPE* dst, int y_start, int y_end, int width) { \
320 for (y = y_start; y < y_end; ++y) { \
328 int y_start, int y_end, const TYPE* src, \
338 for (y = y_start;
179 PredictorInverseTransform(const VP8LTransform* const transform, int y_start, int y_end, uint32_t* data) argument
281 ColorSpaceInverseTransform(const VP8LTransform* const transform, int y_start, int y_end, uint32_t* data) argument
[all...]
/external/opencv3/3rdparty/libwebp/dsp/
H A Dlossless.c670 int y_start, int y_end, uint32_t* data) {
672 if (y_start == 0) { // First Row follows the L (mode=1) mode.
681 ++y_start;
685 int y = y_start;
746 int y_start, int y_end, uint32_t* data) {
748 const uint32_t* const data_end = data + (y_end - y_start) * width;
1074 int y_start, int y_end, uint32_t* data) {
1078 int y = y_start;
1101 int y_start, int y_end, const TYPE* src, TYPE* dst) { \
1110 for (y = y_start;
669 PredictorInverseTransform(const VP8LTransform* const transform, int y_start, int y_end, uint32_t* data) argument
745 AddGreenToBlueAndRed(const VP8LTransform* const transform, int y_start, int y_end, uint32_t* data) argument
1073 ColorSpaceInverseTransform(const VP8LTransform* const transform, int y_start, int y_end, uint32_t* data) argument
[all...]
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_decodeframe.c589 int y_start = (-xd->mb_to_top_edge >> (3 + pd->subsampling_y)); local
593 y0_16 = (y_start + y) << SUBPEL_BITS;
602 y0 = sf->scale_value_y(y_start + y, sf);

Completed in 680 milliseconds