• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/ffmpeg/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) {
143 render->info.h264.field_order_cnt[i] = foc;
146 render->info.h264.frame_num = h->frame_num;
157 render->info.h264.slice_count = h->slice_num;
158 if (render->info.h264.slice_count < 1)
161 render->info.h264.is_reference = (s->current_picture_ptr->reference & 3) ? VDP_TRUE : VDP_FALSE;
162 render->info.h264.field_pic_flag = s->picture_structure != PICT_FRAME;
163 render->info.h264.bottom_field_flag = s->picture_structure == PICT_BOTTOM_FIELD;
164 render->info.h264.num_ref_frames = h->sps.ref_frame_count;
165 render->info.h264.mb_adaptive_frame_field_flag = h->sps.mb_aff && !render->info.h264.field_pic_flag;
166 render->info.h264.constrained_intra_pred_flag = h->pps.constrained_intra_pred;
167 render->info.h264.weighted_pred_flag = h->pps.weighted_pred;
168 render->info.h264.weighted_bipred_idc = h->pps.weighted_bipred_idc;
169 render->info.h264.frame_mbs_only_flag = h->sps.frame_mbs_only_flag;
170 render->info.h264.transform_8x8_mode_flag = h->pps.transform_8x8_mode;
171 render->info.h264.chroma_qp_index_offset = h->pps.chroma_qp_index_offset[0];
172 render->info.h264.second_chroma_qp_index_offset = h->pps.chroma_qp_index_offset[1];
173 render->info.h264.pic_init_qp_minus26 = h->pps.init_qp - 26;
174 render->info.h264.num_ref_idx_l0_active_minus1 = h->pps.ref_count[0] - 1;
175 render->info.h264.num_ref_idx_l1_active_minus1 = h->pps.ref_count[1] - 1;
176 render->info.h264.log2_max_frame_num_minus4 = h->sps.log2_max_frame_num - 4;
177 render->info.h264.pic_order_cnt_type = h->sps.poc_type;
178 render->info.h264.log2_max_pic_order_cnt_lsb_minus4 = h->sps.poc_type ? 0 : h->sps.log2_max_poc_lsb - 4;
179 render->info.h264.delta_pic_order_always_zero_flag = h->sps.delta_pic_order_always_zero_flag;
180 render->info.h264.direct_8x8_inference_flag = h->sps.direct_8x8_inference_flag;
181 render->info.h264.entropy_coding_mode_flag = h->pps.cabac;
182 render->info.h264.pic_order_present_flag = h->pps.pic_order_present;
183 render->info.h264.deblocking_filter_control_present_flag = h->pps.deblocking_filter_parameters_present;
184 render->info.h264.redundant_pic_cnt_present_flag = h->pps.redundant_pic_cnt_present;
185 memcpy(render->info.h264.scaling_lists_4x4, h->pps.scaling_matrix4, sizeof(render->info.h264.scaling_lists_4x4));
186 memcpy(render->info.h264.scaling_lists_8x8, h->pps.scaling_matrix8, sizeof(render->info.h264.scaling_lists_8x8));