HomeSort by relevance Sort by last modified time
    Searched defs:y_pos (Results 1 - 8 of 8) sorted by null

  /external/webrtc/talk/media/base/
fakevideorenderer.h 123 const uint8_t* y_pos = y_plane; local
127 uint8_t y_value = *(y_pos + j);
132 y_pos += y_pitch;
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
block_idct.cpp 230 int y_pos = video->mbnum_row; local
235 offset = (int32)(y_pos << 4) * width + (x_pos << 4);
combined_decode.cpp 553 int y_pos = video->mbnum_row; local
555 int32 offset = (int32)(y_pos << 4) * width + (x_pos << 4);
563 pp_mod[0] = video->pstprcTypCur + (y_pos << 1) * (MB_in_width << 1) + (x_pos << 1);
datapart_decode.cpp 637 int y_pos = video->mbnum_row; local
653 pp_mod[0] = video->pstprcTypCur + (y_pos << 1) * (MB_in_width << 1) + (x_pos << 1);
715 offset = (int32)(y_pos << 4) * width + (x_pos << 4);
dcac_prediction.cpp 42 int y_pos = video->mbnum_row; local
83 if (!comp && y_pos && !(video->headerInfo.Mode[mbnum-nMBPerRow]&INTRA_MASK)) /* not intra */
102 if (x_pos == 0 && y_pos == 0)
116 else if (y_pos == 0)
218 int y_pos = video->mbnum_row; local
261 if (x_pos == 0 && y_pos == 0)
274 else if (y_pos == 0)
vlc_decode.cpp 145 int y_pos = video->mbnum_row; local
147 int pos = (x_pos + y_pos * doubleWidth) << 1;
    [all...]
  /external/webp/src/dec/
vp8l_dec.c 582 static void ConvertToYUVA(const uint32_t* const src, int width, int y_pos,
587 WebPConvertARGBToY(src, buf->y + y_pos * buf->y_stride, width);
591 uint8_t* const u = buf->u + (y_pos >> 1) * buf->u_stride;
592 uint8_t* const v = buf->v + (y_pos >> 1) * buf->v_stride;
595 WebPConvertARGBToUV(src, u, v, width, !(y_pos & 1));
599 uint8_t* const a = buf->a + y_pos * buf->a_stride;
608 static int ExportYUVA(const VP8LDecoder* const dec, int y_pos) {
616 ConvertToYUVA(src, dst_width, y_pos, dec->output_);
617 ++y_pos;
626 int y_pos = dec->last_out_row_ local
645 int y_pos = dec->last_out_row_; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
vlc_encode.cpp 2027 Int y_pos = video->outputMB->mb_y; local
    [all...]

Completed in 873 milliseconds