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

  /frameworks/base/media/libstagefright/codecs/avc/dec/src/
slice.cpp 122 uint mb_type; local
139 ue_v(stream, &mb_type);
140 if (mb_type > 30)
144 InterpretMBModeP(currMB, mb_type);
180 ue_v(stream, &mb_type);
181 if (mb_type > 25)
185 InterpretMBModeI(currMB, mb_type);
448 void InterpretMBModeI(AVCMacroblock *mblock, uint mb_type)
454 if (mb_type == 0) /* I_4x4 */
458 else if (mb_type < 25) /* I_PCM *
    [all...]
avcdec_lib.h 225 This function interprets the mb_type and sets necessary information
229 \param "mb_type" "From the syntax bitstream."
232 void InterpretMBModeI(AVCMacroblock *mblock, uint mb_type);
235 This function interprets the mb_type and sets necessary information
239 \param "mb_type" "From the syntax bitstream."
242 void InterpretMBModeP(AVCMacroblock *mblock, uint mb_type);
245 This function interprets the mb_type and sets necessary information
249 \param "mb_type" "From the syntax bitstream."
252 void InterpretMBModeB(AVCMacroblock *mblock, uint mb_type);
255 This function interprets the mb_type and sets necessary informatio
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/enc/src/
slice.cpp 208 /* write down mb_type and PCM data */
414 /* encode mb_type, mb_pred, sub_mb_pred, CBP */
548 /* encode mb_type, mb_pred, sub_mb_pred, CBP */
553 uint mb_type; local
562 mb_type = InterpretMBType(currMB, video->slice_type);
564 status = ue_v(stream, mb_type);
605 int mb_type;// part1, part2, part3; local
613 mb_type = 0;
621 mb_type = 13;
625 mb_type = 1
    [all...]

Completed in 69 milliseconds