HomeSort by relevance Sort by last modified time
    Searched refs:mb_y (Results 1 - 13 of 13) 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_dec.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
415 const int mb_y = ctx->mb_y_; local
    [all...]
vp8_dec.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_dec.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;
136 uint8_t* dst = buf->a + io->mb_y * buf->a_stride;
155 int start_y = io->mb_y;
171 if (io->crop_top + io->mb_y + io->mb_h == io->crop_bottom)
    [all...]
vp8l_dec.c 657 // Sets io->mb_y, io->mb_h & io->mb_w according to start row, end row and
678 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 134 Int mb_y; /* Y coordinate */ member in struct:tagMacroBlock
vlc_encode.cpp     [all...]

Completed in 297 milliseconds