HomeSort by relevance Sort by last modified time
    Searched refs:mb_x (Results 1 - 20 of 20) 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 64 UWORD16 mb_x,
  /external/libavc/decoder/
ih264d_mb_utils.c 53 /* (a) mb_x and mb_y */
85 WORD32 mb_x; local
94 /* Calculate values of mb_x and mb_y */
96 mb_x = (WORD16)ps_dec->u2_mbx;
101 mb_x++;
103 if(mb_x == u2_frm_width_in_mb)
105 mb_x = 0;
115 if(mb_x > i2_prev_slice_mbx)
122 if((mb_x > (i2_prev_slice_mbx - 1))
123 && (mb_x != (u2_frm_width_in_mb - 1))
367 WORD32 mb_x; local
549 WORD32 mb_x; local
    [all...]
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))
  /external/webp/src/dec/
tree.c 283 VP8Decoder* const dec, int mb_x) {
284 uint8_t* const top = dec->intra_t_ + 4 * mb_x;
286 VP8MBData* const block = dec->mb_data_ + mb_x;
350 int mb_x; local
351 for (mb_x = 0; mb_x < dec->mb_w_; ++mb_x) {
352 ParseIntraMode(br, dec, mb_x);
frame.c 28 static int CheckMode(int mb_x, int mb_y, int mode) {
30 if (mb_x == 0) {
74 int mb_x; local
102 for (mb_x = 0; mb_x < dec->mb_w_; ++mb_x) {
103 const VP8MBData* const block = ctx->mb_data_ + mb_x;
107 if (mb_x > 0) {
118 VP8TopSamples* const top_yuv = dec->yuv_t_ + mb_x;
134 if (mb_x >= dec->mb_w_ - 1) { // on rightmost borde
254 int mb_x; local
383 int mb_x; local
    [all...]
  /external/opencv3/3rdparty/libwebp/dec/
frame.c 42 static void DoFilter(const VP8Decoder* const dec, int mb_x, int mb_y) {
45 VP8FInfo* const f_info = ctx->f_info_ + mb_x;
46 uint8_t* const y_dst = dec->cache_y_ + ctx->id_ * 16 * y_bps + mb_x * 16;
54 if (mb_x > 0) {
68 uint8_t* const u_dst = dec->cache_u_ + ctx->id_ * 8 * uv_bps + mb_x * 8;
69 uint8_t* const v_dst = dec->cache_v_ + ctx->id_ * 8 * uv_bps + mb_x * 8;
72 if (mb_x > 0) {
93 int mb_x; local
96 for (mb_x = dec->tl_mb_x_; mb_x < dec->br_mb_x_; ++mb_x)
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
combined_encode.cpp 127 video->outputMB->mb_x = ind_x; /* 5/28/01 */
276 Int ind_x = video->outputMB->mb_x, ind_y = video->outputMB->mb_y;
397 video->outputMB->mb_x = ind_x; /* 5/28/01, do not remove */
519 video->outputMB->mb_x++;
520 if (video->outputMB->mb_x >= currVol->nMBPerRow)
522 video->outputMB->mb_x = 0;
584 video->outputMB->mb_x = 0;
datapart_encode.cpp 102 video->outputMB->mb_x = ind_x; /* 5/28/01 */
223 Int ind_x = video->outputMB->mb_x, ind_y = video->outputMB->mb_y;
310 video->outputMB->mb_x = ind_x; /* 5/28/01 */
fastcodemb.cpp 75 Int ind_x = video->outputMB->mb_x;
306 Int ind_x = video->outputMB->mb_x;
mp4lib_int.h 132 Int mb_x; /* X coordinate */ member in struct:tagMacroBlock
vlc_encode.cpp     [all...]
  /frameworks/av/media/libstagefright/codecs/avc/common/src/
mb_access.cpp 33 if (video->mb_x)
45 if (video->mb_x < (PicWidthInMbs - 1))
deblock.cpp 59 static void DeblockMb(AVCCommonObj *video, int mb_x, int mb_y, uint8 *SrcY, uint8 *SrcU, uint8 *SrcV);
120 int x_pos = video->mb_x;
290 void DeblockMb(AVCCommonObj *video, int mb_x, int mb_y, uint8 *SrcY, uint8 *SrcU, uint8 *SrcV)
294 int filterLeftMbEdgeFlag = (mb_x != 0);
300 int mbNum = mb_y * video->PicWidthInMbs + mb_x;
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
residual.cpp 26 int x_position = (video->mb_x << 4);
intra_est.cpp 37 int x_pos = (video->mb_x) << 4;
118 int x_pos = (video->mb_x) << 4;
211 int x_pos = (video->mb_x) << 4;
636 int x = video->mb_x << 4;
    [all...]
slice.cpp 47 video->mb_x = CurrMbAddr % video->PicWidthInMbs;
168 int x_position = (video->mb_x << 4);
motion_comp.cpp 53 int x_position = (video->mb_x << 4);
    [all...]
  /hardware/intel/img/psb_video/src/mrst/
psb_MPEG2MC.c 471 uint32_t mb_x; local
523 mb_x = mb_addr % ctx->picture_width_mb;
524 REGIO_WRITE_FIELD(cmd, MSVDX_CMDS, MACROBLOCK_NUMBER, MB_NO_X, mb_x);
531 REGIO_WRITE_FIELD(cmd, MSVDX_CMDS, MACROBLOCK_NUMBER , MB_SLICE_LHS, ctx->fstmb_slice || (mb_x == 0));
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/common/include/
avcint_common.h 680 int mb_x; /* x-coordinate of the current mbNum */ member in struct:tagCommonObj
    [all...]

Completed in 4292 milliseconds