• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/

Lines Matching refs:h264

26 #include "h264.h"
52 rf = &render->info.h264.referenceFrames[0];
53 #define H264_RF_COUNT FF_ARRAY_ELEMS(render->info.h264.referenceFrames)
68 rf2 = &render->info.h264.referenceFrames[0];
84 if (rf >= &render->info.h264.referenceFrames[H264_RF_COUNT])
99 for (; rf < &render->info.h264.referenceFrames[H264_RF_COUNT]; ++rf) {
139 render->info.h264.slice_count = h->slice_num;
140 if (render->info.h264.slice_count < 1)
147 render->info.h264.field_order_cnt[i] = foc;
150 render->info.h264.is_reference = (s->current_picture_ptr->reference & 3) ? VDP_TRUE : VDP_FALSE;
151 render->info.h264.frame_num = h->frame_num;
152 render->info.h264.field_pic_flag = s->picture_structure != PICT_FRAME;
153 render->info.h264.bottom_field_flag = s->picture_structure == PICT_BOTTOM_FIELD;
154 render->info.h264.num_ref_frames = h->sps.ref_frame_count;
155 render->info.h264.mb_adaptive_frame_field_flag = h->sps.mb_aff && !render->info.h264.field_pic_flag;
156 render->info.h264.constrained_intra_pred_flag = h->pps.constrained_intra_pred;
157 render->info.h264.weighted_pred_flag = h->pps.weighted_pred;
158 render->info.h264.weighted_bipred_idc = h->pps.weighted_bipred_idc;
159 render->info.h264.frame_mbs_only_flag = h->sps.frame_mbs_only_flag;
160 render->info.h264.transform_8x8_mode_flag = h->pps.transform_8x8_mode;
161 render->info.h264.chroma_qp_index_offset = h->pps.chroma_qp_index_offset[0];
162 render->info.h264.second_chroma_qp_index_offset = h->pps.chroma_qp_index_offset[1];
163 render->info.h264.pic_init_qp_minus26 = h->pps.init_qp - 26;
164 render->info.h264.num_ref_idx_l0_active_minus1 = h->pps.ref_count[0] - 1;
165 render->info.h264.num_ref_idx_l1_active_minus1 = h->pps.ref_count[1] - 1;
166 render->info.h264.log2_max_frame_num_minus4 = h->sps.log2_max_frame_num - 4;
167 render->info.h264.pic_order_cnt_type = h->sps.poc_type;
168 render->info.h264.log2_max_pic_order_cnt_lsb_minus4 = h->sps.log2_max_poc_lsb - 4;
169 render->info.h264.delta_pic_order_always_zero_flag = h->sps.delta_pic_order_always_zero_flag;
170 render->info.h264.direct_8x8_inference_flag = h->sps.direct_8x8_inference_flag;
171 render->info.h264.entropy_coding_mode_flag = h->pps.cabac;
172 render->info.h264.pic_order_present_flag = h->pps.pic_order_present;
173 render->info.h264.deblocking_filter_control_present_flag = h->pps.deblocking_filter_parameters_present;
174 render->info.h264.redundant_pic_cnt_present_flag = h->pps.redundant_pic_cnt_present;
175 memcpy(render->info.h264.scaling_lists_4x4, h->pps.scaling_matrix4, sizeof(render->info.h264.scaling_lists_4x4));
176 memcpy(render->info.h264.scaling_lists_8x8, h->pps.scaling_matrix8, sizeof(render->info.h264.scaling_lists_8x8));