Home
last modified time | relevance | path

Searched refs:macroblock_type (Results 1 – 8 of 8) sorted by relevance

/external/mesa3d/src/gallium/auxiliary/vl/
Dvl_mpeg12_bitstream.c717 bool intra = mb->macroblock_type & PIPE_MPEG12_MB_TYPE_INTRA; in decode_dct()
866 mb.macroblock_type = vl_vlc_get_vlclbf(&bs->vlc, tbl_B2, 2); in decode_slice()
870 mb.macroblock_type = vl_vlc_get_vlclbf(&bs->vlc, tbl_B3, 6); in decode_slice()
874 mb.macroblock_type = vl_vlc_get_vlclbf(&bs->vlc, tbl_B4, 6); in decode_slice()
879 mb.macroblock_type = PIPE_MPEG12_MB_TYPE_INTRA; in decode_slice()
884 …if (mb.macroblock_type & (PIPE_MPEG12_MB_TYPE_MOTION_FORWARD | PIPE_MPEG12_MB_TYPE_MOTION_BACKWARD… in decode_slice()
893 …} else if ((mb.macroblock_type & PIPE_MPEG12_MB_TYPE_INTRA) && bs->desc->concealment_motion_vector… in decode_slice()
902 mb.macroblock_type & (PIPE_MPEG12_MB_TYPE_INTRA | PIPE_MPEG12_MB_TYPE_PATTERN)) in decode_slice()
905 if (mb.macroblock_type & PIPE_MPEG12_MB_TYPE_QUANT) in decode_slice()
912 if ((mb.macroblock_type & PIPE_MPEG12_MB_TYPE_MOTION_FORWARD) || in decode_slice()
[all …]
Dvl_mpeg12_decoder.c325 …switch (mb->macroblock_type & (PIPE_MPEG12_MB_TYPE_MOTION_FORWARD | PIPE_MPEG12_MB_TYPE_MOTION_BAC… in MacroBlockTypeToPipeWeights()
342 if (mb->macroblock_type & PIPE_MPEG12_MB_TYPE_INTRA) { in MacroBlockTypeToPipeWeights()
363 …if (mb->macroblock_type & (PIPE_MPEG12_MB_TYPE_MOTION_FORWARD | PIPE_MPEG12_MB_TYPE_MOTION_BACKWAR… in MotionVectorToPipe()
420 intra = mb->macroblock_type & PIPE_MPEG12_MB_TYPE_INTRA ? 1 : 0; in UploadYcbcrBlocks()
675 if (mb->macroblock_type & (PIPE_MPEG12_MB_TYPE_PATTERN | PIPE_MPEG12_MB_TYPE_INTRA)) in vl_mpeg12_decode_macroblock()
/external/mesa3d/src/gallium/drivers/nouveau/
Dnouveau_video.c122 } else if (mb->macroblock_type & PIPE_MPEG12_MB_TYPE_INTRA) { in nouveau_vpe_mb_dct_blocks()
139 } else if (mb->macroblock_type & PIPE_MPEG12_MB_TYPE_INTRA) { in nouveau_vpe_mb_data_blocks()
152 bool intra = mb->macroblock_type & PIPE_MPEG12_MB_TYPE_INTRA; in nouveau_vpe_mb_dct_header()
288 forward = mb->macroblock_type & PIPE_MPEG12_MB_TYPE_MOTION_FORWARD; in nouveau_vpe_mb_mv_header()
289 backward = mb->macroblock_type & PIPE_MPEG12_MB_TYPE_MOTION_BACKWARD; in nouveau_vpe_mb_mv_header()
440 if (mb->macroblock_type & PIPE_MPEG12_MB_TYPE_INTRA) { in nouveau_decoder_decode_macroblock()
/external/mesa3d/src/gallium/state_trackers/xvmc/
Dsurface.c64 mb->macroblock_type = xvmc_mb->macroblock_type; in MacroBlocksToPipe()
/external/mesa3d/src/gallium/drivers/nouveau/nv50/
Dnv84_video_vp.c259 int intra = macrob->macroblock_type & PIPE_MPEG12_MB_TYPE_INTRA; in nv84_decoder_vp_mpeg12_mb()
260 int motion = macrob->macroblock_type & in nv84_decoder_vp_mpeg12_mb()
/external/mesa3d/src/gallium/state_trackers/xvmc/tests/
Dtest_rendering.c199 mb->macroblock_type = XVMC_MB_TYPE_INTRA; in main()
Dxvmc_bench.c248 mb_array.macro_blocks[mby * mbw + mbx].macroblock_type = XVMC_MB_TYPE_INTRA; in main()
/external/mesa3d/src/gallium/include/pipe/
Dp_video_state.h179 unsigned char macroblock_type; member