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

  /external/libavc/encoder/
irc_frame_info_collector.h 60 #define FI_UPDATE_MB_HEADER(frame_info,header_bits,mb_type)\
61 {(frame_info)->mb_header_bits[(mb_type)] += (header_bits);}
63 #define FI_UPDATE_MB_TEXTURE(frame_info,texture_bits,mb_type)\
64 {(frame_info)->mb_texture_bits[(mb_type)] += (texture_bits);}
66 #define FI_UPDATE_MB_SAD(frame_info,mb_sad,mb_type)\
67 {(frame_info)->tot_mb_sad[(mb_type)] += (mb_sad);}
69 #define FI_UPDATE_MB_QP(frame_info,qp,mb_type)\
70 {(frame_info)->qp_sum[(mb_type)] += (qp);(frame_info)->num_mbs[(mb_type)]++;}
97 WORD32 irc_fi_get_avg_mb_header(frame_info_t *frame_info, UWORD8 mb_type);
    [all...]
irc_frame_info_collector.c 108 WORD32 irc_fi_get_avg_mb_header(frame_info_t *frame_info, UWORD8 mb_type)
110 if(frame_info->num_mbs[mb_type])
112 return (frame_info->mb_header_bits[mb_type]
113 / frame_info->num_mbs[mb_type]);
122 UWORD8 mb_type)
124 return (frame_info->mb_texture_bits[mb_type]);
127 WORD32 irc_fi_get_total_mb_sad(frame_info_t *frame_info, UWORD8 mb_type)
129 return (frame_info->tot_mb_sad[mb_type]);
132 WORD32 irc_fi_get_total_mb_qp(frame_info_t *frame_info, UWORD8 mb_type)
134 if(frame_info->num_mbs[mb_type])
    [all...]
ih264e_cavlc.c 973 WORD32 mb_tpm, mb_type, cbp, chroma_intra_mode, luma_intra_mode; local
1207 WORD32 mb_tpm, mb_type, cbp, chroma_intra_mode, luma_intra_mode; local
1519 WORD32 mb_tpm, mb_type, cbp, chroma_intra_mode, luma_intra_mode; local
    [all...]
ih264e_cabac_encode.c 171 * Encodes mb_type for an intra MB.
183 * ctxIdxOffset for mb_type context
1630 WORD32 mb_tpm, mb_type, cbp, chroma_intra_mode, luma_intra_mode; local
1779 WORD32 mb_tpm, mb_type, cbp, chroma_intra_mode, luma_intra_mode; local
2070 WORD32 mb_tpm, mb_type, cbp, chroma_intra_mode, luma_intra_mode; local
    [all...]
ih264e_rate_control.c 408 WORD32 mb_type = !ps_proc->u4_is_intra; local
411 ps_frame_info->tot_mb_sad[mb_type] += ps_proc->i4_mb_distortion;
414 ps_frame_info->qp_sum[mb_type] += gau1_h264_to_mpeg2_qmap[ps_proc->u4_mb_qp];
417 ps_frame_info->num_mbs[mb_type]++;
  /hardware/intel/common/libva/va/vendor/intel/
va_intel_fei.h 186 unsigned int mb_type : 5; member in struct:_VAEncFEIModeBufferH264Intel
  /external/v8/tools/mb/
mb.py 516 mb_type_path = self.PathJoin(self.ToAbsPath(build_dir), 'mb_type')
526 mb_type = 'gn'
528 mb_type = self.ReadFile(mb_type_path).strip()
530 if mb_type == 'gn':
534 vals['type'] = mb_type
607 'type': contents.get('mb_type', ''),
708 mb_type_path = self.PathJoin(build_dir, 'mb_type')
719 # There is no 'mb_type' file in the build directory, so this probably
723 self.Print("%s/mb_type missing, clobbering to be safe" % path)
    [all...]

Completed in 215 milliseconds