HomeSort by relevance Sort by last modified time
    Searched refs:mb_y (Results 1 - 24 of 24) sorted by null

  /external/libmpeg2/decoder/
impeg2d_debug.h 49 void impeg2d_trace_mb_start(UWORD32 mb_x, UWORD32 mb_y);
53 #define IMPEG2D_TRACE_MB_START(mb_x, mb_y) void impeg2d_trace_mb_start(UWORD32 mb_x, UWORD32 mb_y);
57 #define IMPEG2D_TRACE_MB_START(mb_x, mb_y)
impeg2d_mc.h 65 UWORD16 mb_y,
  /external/libavc/decoder/
ih264d_mb_utils.h 244 #define MB_LUMA_PIC_OFFSET(mb_x,mb_y,frmWidthY) (((mb_y)*(frmWidthY) + (mb_x))<<4)
245 #define MB_CHROMA_PIC_OFFSET(mb_x,mb_y,frmWidthUV) (((mb_y)*(frmWidthUV) + (mb_x))<<3)
250 #define MB_PARAM_OFFSET(mb_x,mb_y,frmWidthInMbs,u1_mbaff,u1_topmb) \
251 ((mb_x << u1_mbaff) + (1 - u1_topmb) + (mb_y * frmWidthInMbs))
ih264d_mb_utils.c 53 /* (a) mb_x and mb_y */
86 WORD32 mb_y; local
94 /* Calculate values of mb_x and mb_y */
97 mb_y = (WORD16)ps_dec->u2_mby;
106 mb_y++;
108 if(mb_y > ps_dec->i2_prev_slice_mby)
112 if(mb_y > (ps_dec->i2_prev_slice_mby + 1))
162 ps_dec->u2_mby = mb_y;
165 ps_cur_mb_info->u2_mby = mb_y;
183 /* (a) mb_x and mb_y */
368 WORD32 mb_y; local
550 WORD32 mb_y; local
    [all...]
  /external/webp/src/dec/
frame.c 28 static int CheckMode(int mb_x, int mb_y, int mode) {
31 return (mb_y == 0) ? B_DC_PRED_NOTOPLEFT : B_DC_PRED_NOLEFT;
33 return (mb_y == 0) ? B_DC_PRED_NOTOP : B_DC_PRED;
75 const int mb_y = ctx->mb_y_; local
91 if (mb_y > 0) {
123 if (mb_y > 0) {
133 if (mb_y > 0) {
150 const int pred_func = CheckMode(mb_x, mb_y, block->imodes_[0]);
161 const int pred_func = CheckMode(mb_x, mb_y, block->uvmode_);
169 if (mb_y < dec->mb_h_ - 1)
255 const int mb_y = dec->thread_ctx_.mb_y_; local
425 const int mb_y = ctx->mb_y_; local
    [all...]
decode_vp8.h 55 int mb_y; // position of the current rows (in pixels) member in struct:VP8Io
105 // start of the current row (That is: it is pre-offset by mb_y and takes
io.c 28 uint8_t* const y_dst = buf->y + io->mb_y * buf->y_stride;
29 uint8_t* const u_dst = buf->u + (io->mb_y >> 1) * buf->u_stride;
30 uint8_t* const v_dst = buf->v + (io->mb_y >> 1) * buf->v_stride;
50 uint8_t* const dst = buf->rgba + io->mb_y * buf->stride;
65 uint8_t* dst = buf->rgba + io->mb_y * buf->stride;
72 int y = io->mb_y;
73 const int y_end = io->mb_y + io->mb_h;
128 uint8_t* dst = buf->a + io->mb_y * buf->a_stride;
150 int start_y = io->mb_y;
166 if (io->crop_top + io->mb_y + io->mb_h == io->crop_bottom)
    [all...]
vp8l.c 650 // Sets io->mb_y, io->mb_h & io->mb_w according to start row, end row and
671 io->mb_y = y_start - io->crop_top;
    [all...]
  /external/opencv3/3rdparty/libwebp/dec/
decode_vp8.h 55 int mb_y; // position of the current rows (in pixels) member in struct:VP8Io
105 // start of the current row (That is: it is pre-offset by mb_y and takes
io.c 31 uint8_t* const y_dst = buf->y + io->mb_y * buf->y_stride;
32 uint8_t* const u_dst = buf->u + (io->mb_y >> 1) * buf->u_stride;
33 uint8_t* const v_dst = buf->v + (io->mb_y >> 1) * buf->v_stride;
53 uint8_t* dst = buf->rgba + io->mb_y * buf->stride;
82 uint8_t* dst = buf->rgba + io->mb_y * buf->stride;
108 uint8_t* dst = buf->rgba + io->mb_y * buf->stride;
115 int y = io->mb_y;
116 const int y_end = io->mb_y + io->mb_h;
170 uint8_t* dst = buf->a + io->mb_y * buf->a_stride;
191 int start_y = io->mb_y;
    [all...]
frame.c 42 static void DoFilter(const VP8Decoder* const dec, int mb_x, int mb_y) {
60 if (mb_y > 0) {
80 if (mb_y > 0) {
94 const int mb_y = dec->thread_ctx_.mb_y_; local
97 DoFilter(dec, mb_x, mb_y);
161 #define MACROBLOCK_VPOS(mb_y) ((mb_y) * 16) // vertical position of a MB
233 io->mb_y = y_start - io->crop_top;
512 io->mb_y = 0;
vp8l.c 563 // Sets io->mb_y, io->mb_h & io->mb_w according to start row, end row and
584 io->mb_y = y_start - io->crop_top;
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
combined_encode.cpp 110 video->outputMB->mb_y = ind_y; /* 5/28/01 */
276 Int ind_x = video->outputMB->mb_x, ind_y = video->outputMB->mb_y;
392 video->outputMB->mb_y = ind_y; /* 5/28/01, do not remove */
523 video->outputMB->mb_y++;
585 video->outputMB->mb_y++;
datapart_encode.cpp 98 video->outputMB->mb_y = ind_y; /* 5/28/01 */
223 Int ind_x = video->outputMB->mb_x, ind_y = video->outputMB->mb_y;
305 video->outputMB->mb_y = ind_y; /* 5/28/01 */
fastcodemb.cpp 76 Int ind_y = video->outputMB->mb_y;
307 Int ind_y = video->outputMB->mb_y;
mp4lib_int.h 133 Int mb_y; /* Y coordinate */ member in struct:tagMacroBlock
vlc_encode.cpp     [all...]
  /frameworks/av/media/libstagefright/codecs/avc/common/src/
mb_access.cpp 36 if (video->mb_y)
42 if (video->mb_y)
deblock.cpp 59 static void DeblockMb(AVCCommonObj *video, int mb_x, int mb_y, uint8 *SrcY, uint8 *SrcU, uint8 *SrcV);
121 int y_pos = video->mb_y;
290 void DeblockMb(AVCCommonObj *video, int mb_x, int mb_y, uint8 *SrcY, uint8 *SrcU, uint8 *SrcV)
295 int filterTopMbEdgeFlag = (mb_y != 0);
300 int mbNum = mb_y * video->PicWidthInMbs + mb_x;
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
intra_est.cpp 38 int y_pos = (video->mb_y) << 4;
119 int y_pos = (video->mb_y) << 4;
212 int y_pos = (video->mb_y) << 4;
635 int y = video->mb_y << 4;
    [all...]
residual.cpp 27 int y_position = (video->mb_y << 4);
slice.cpp 48 video->mb_y = CurrMbAddr / video->PicWidthInMbs;
169 int y_position = (video->mb_y << 4);
motion_comp.cpp 54 int y_position = (video->mb_y << 4);
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/common/include/
avcint_common.h 681 int mb_y; /* y-coordinate of the current mbNum */ member in struct:tagCommonObj
    [all...]

Completed in 1380 milliseconds