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

  /frameworks/base/media/libstagefright/codecs/avc/dec/src/
slice.cpp 394 uint sub_mb_type[4]; local
401 ue_v(stream, &(sub_mb_type[mbPartIdx]));
402 if (sub_mb_type[mbPartIdx] > 3)
409 /* assign values to currMB->sub_mb_type[], currMB->MBPartPredMode[][x] */
411 InterpretSubMBModeP(currMB, sub_mb_type);
566 /* input is mblock->sub_mb_type[] */
567 void InterpretSubMBModeP(AVCMacroblock *mblock, uint *sub_mb_type)
578 sub_type = (int) sub_mb_type[i];
588 void InterpretSubMBModeB(AVCMacroblock *mblock, uint *sub_mb_type)
602 sub_type = (int) sub_mb_type[i]
    [all...]
avcdec_lib.h 265 This function interprets the sub_mb_type and sets necessary information
269 \param "sub_mb_type" "From the syntax bitstream."
272 void InterpretSubMBModeP(AVCMacroblock *mblock, uint *sub_mb_type);
275 This function interprets the sub_mb_type and sets necessary information
279 \param "sub_mb_type" "From the syntax bitstream."
282 void InterpretSubMBModeB(AVCMacroblock *mblock, uint *sub_mb_type);
  /frameworks/base/media/libstagefright/codecs/avc/enc/src/
slice.cpp 779 uint sub_mb_type[4]; local
788 /* assign values to currMB->sub_mb_type[] */
791 InterpretSubMBTypeP(currMB, sub_mb_type);
796 InterpretSubMBTypeB(currMB,sub_mb_type);
801 status = ue_v(stream, sub_mb_type[mbPartIdx]);
867 /* input is mblock->sub_mb_type[] */
868 void InterpretSubMBTypeP(AVCMacroblock *mblock, uint *sub_mb_type)
879 sub_mb_type[i] = mblock->subMbMode[i] - AVC_8x8;
885 void InterpretSubMBTypeB(AVCMacroblock *mblock, uint *sub_mb_type)
900 sub_mb_type[i] = 0
    [all...]
avcenc_lib.h     [all...]

Completed in 2170 milliseconds