Searched refs:poc (Results 1 - 20 of 20) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dhevc_refs.c123 int ff_hevc_set_new_ref(HEVCContext *s, AVFrame **frame, int poc) argument
133 frame->poc == poc) {
135 poc);
152 ref->poc = poc;
169 if ((frame->flags & HEVC_FRAME_FLAG_OUTPUT) && frame->poc != s->poc &&
181 if (frame->poc < min_poc) {
182 min_poc = frame->poc;
314 find_ref_idx(HEVCContext *s, int poc) argument
346 generate_missing_ref(HEVCContext *s, int poc) argument
379 add_candidate_ref(HEVCContext *s, RefPicList *list, int poc, int ref_flag) argument
428 int poc = s->poc + short_rps->delta_poc[i]; local
445 int poc = long_rps->poc[i]; local
[all...]
H A Dh264_direct.c38 static int get_scale_factor(H264Context * const h, int poc, int poc1, int i){ argument
39 int poc0 = h->ref_list[0][i].poc;
44 int tb = av_clip(poc - poc0, -128, 127);
51 const int poc = h->picture_structure == PICT_FRAME ? local
52 h->cur_pic_ptr->poc :
54 const int poc1 = h->ref_list[1][0].poc;
59 const int poc = h->cur_pic_ptr->field_poc[field]; local
63 get_scale_factor(h, poc, poc1, i+16);
67 h->dist_scale_factor[i] = get_scale_factor(h, poc, poc1, i);
83 int poc local
[all...]
H A Dh264_refs.c55 pic->poc= pic->field_poc[parity == PICT_BOTTOM_FIELD];
109 const int poc = src[i]->poc; local
110 if (((poc > limit) ^ dir) && ((poc < best_poc) ^ dir)) {
111 best_poc = poc;
117 limit = sorted[out_i++]->poc - dir;
134 cur_poc = h->cur_pic_ptr->poc;
335 av_log(h->avctx, AV_LOG_ERROR, "Missing reference picture, default is %d\n", h->default_ref_list[list][0].poc);
362 field[0].poc
[all...]
H A Dhevc_parser.c237 s->output_picture_number = h->poc = ff_hevc_compute_poc(h, sh->pic_order_cnt_lsb);
239 s->output_picture_number = h->poc = 0;
249 h->pocTid0 = h->poc;
H A Dcavsdec.c530 h->cur.poc, h->mbx, h->mby);
1017 h->cur.poc = get_bits(&h->gb, 8) * 2;
1021 h->dist[0] = (h->cur.poc - h->DPB[0].poc) & 511;
1023 h->dist[0] = (h->DPB[0].poc - h->cur.poc) & 511;
1025 h->dist[1] = (h->cur.poc - h->DPB[1].poc) & 511;
H A Dh264_picture.c110 dst->poc = src->poc;
H A Dhevc_mvs.c163 int colPic, int poc,
178 cur_poc_diff = poc - refPicList[X].list[refIdxLx];
191 colPic, s->poc, \
213 if (refPicList[0].list[i] > s->poc)
217 if (refPicList[1].list[i] > s->poc)
266 colPic = ref->poc;
585 int poc_diff = s->poc - ref_pic_elist;
588 mv_scale(mv, mv, poc_diff, s->poc - ref_pic_curr);
162 check_mvset(Mv *mvLXCol, Mv *mvCol, int colPic, int poc, RefPicList *refPicList, int X, int refIdxLx, RefPicList *refPicList_col, int listCol, int refidxCol) argument
H A Dcavs.h160 int poc; member in struct:AVSFrame
H A Dhevc.h286 int poc[32]; member in struct:LongTermRPS
729 int poc; member in struct:HEVCFrame
843 int poc; member in struct:HEVCContext
1010 int ff_hevc_set_new_ref(HEVCContext *s, AVFrame **frame, int poc);
H A Dh264.c904 if(i == MAX_DELAYED_PIC_COUNT || cur->poc < h->last_pocs[i]){
906 h->last_pocs[i-1] = cur->poc;
917 av_log(h->avctx, AV_LOG_VERBOSE, "Invalid POC %d<%d\n", cur->poc, h->last_pocs[0]);
920 h->last_pocs[0] = cur->poc;
944 if (h->delayed_pic[i]->poc < out->poc) {
951 out_of_order = out->poc < h->next_outputed_poc;
965 h->next_outputed_poc = out->poc;
1183 int poc = 2 * (h->frame_num_offset + h->frame_num); local
1186 poc
[all...]
H A Dhevc.c243 if (nb_sh + (uint64_t)nb_sps > FF_ARRAY_ELEMS(rps->poc))
257 rps->poc[i] = sps->lt_ref_pic_poc_lsb_sps[lt_idx_sps];
260 rps->poc[i] = get_bits(gb, sps->log2_max_poc_lsb);
271 rps->poc[i] += s->poc - delta * max_poc_lsb - s->sh.pic_order_cnt_lsb;
470 int short_term_ref_pic_set_sps_flag, poc; local
473 poc = ff_hevc_compute_poc(s, sh->pic_order_cnt_lsb);
474 if (!sh->first_slice_in_pic_flag && poc != s->poc) {
476 "Ignoring POC change between slices: %d -> %d\n", s->poc, po
[all...]
H A Dh264_slice.c912 cur_poc = h->cur_pic_ptr->poc;
917 h->ref_list[0][0].poc + h->ref_list[1][0].poc == 2 * cur_poc) {
938 int poc0 = h->ref_list[0][ref0].poc;
942 int poc1 = h->ref_list[1][ref1].poc;
1636 h->short_ref[0]->poc = prev->poc + 2;
1746 ff_init_poc(h, h->cur_pic_ptr->field_poc, &h->cur_pic_ptr->poc);
1963 "slice:%d %s mb:%d %c%s%s pps:%u frame:%d poc:%d/%d ref:%d/%d qp:%d loop:%d:%d:%d weight:%d%s %s\n",
H A Dh264.h313 int poc; ///< frame POC member in struct:H264Picture
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dh264_direct.c40 static int get_scale_factor(H264Context * const h, int poc, int poc1, int i){ argument
41 int poc0 = h->ref_list[0][i].poc;
46 int tb = av_clip(poc - poc0, -128, 127);
54 const int poc = h->s.current_picture_ptr->field_poc[ s->picture_structure == PICT_BOTTOM_FIELD ]; local
55 const int poc1 = h->ref_list[1][0].poc;
58 const int poc = h->s.current_picture_ptr->field_poc[field]; local
61 h->dist_scale_factor_field[field][i^field] = get_scale_factor(h, poc, poc1, i+16);
65 h->dist_scale_factor[i] = get_scale_factor(h, poc, poc1, i);
82 int poc = ref1->ref_poc[colfield][list][old_ref]; local
85 poc |
[all...]
H A Dh264_refs.c46 pic->poc= pic->field_poc[parity == PICT_BOTTOM_FIELD];
95 const int poc= src[i]->poc; local
96 if(((poc > limit) ^ dir) && ((poc < best_poc) ^ dir)){
97 best_poc= poc;
103 limit= sorted[out_i++]->poc - dir;
120 cur_poc= s->current_picture_ptr->poc;
311 field[0].poc= field[0].field_poc[0];
316 field[1].poc
[all...]
H A Dcavsdec.c507 h->picture.poc = get_bits(&s->gb,8)*2;
511 h->dist[0] = (h->picture.poc - h->DPB[0].poc + 512) % 512;
513 h->dist[0] = (h->DPB[0].poc - h->picture.poc + 512) % 512;
515 h->dist[1] = (h->picture.poc - h->DPB[1].poc + 512) % 512;
H A Dcavs.h298 h->picture.poc, h->mbx, h->mby);
H A Dh264.c1470 cnt += out->poc < h->last_pocs[i];
1471 invalid += out->poc == INT_MIN;
1489 if(h->delayed_pic[i]->poc < out->poc){
1496 out_of_order = !out->f.key_frame && !h->mmco_reset && (out->poc < h->next_outputed_poc);
1507 ((h->next_outputed_poc != INT_MIN && out->poc > h->next_outputed_poc + 2) ||
1521 h->last_pocs[MAX_DELAYED_PIC_COUNT - 1] = cur->poc;
1526 h->next_outputed_poc = out->poc;
1535 h->next_outputed_poc = out->poc;
2322 cur_poc = s->current_picture_ptr->poc;
2463 int poc= 2*(h->frame_num_offset + h->frame_num); local
[all...]
H A Dmpegvideo.h121 int poc; ///< h264 frame POC member in struct:Picture
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/comedi/drivers/
H A DMakefile55 obj-$(CONFIG_COMEDI_POC) += poc.o

Completed in 297 milliseconds