Searched refs:ref_list (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 Dh264_direct.c39 int poc0 = h->ref_list[0][i].poc;
41 if(td == 0 || h->ref_list[0][i].long_ref){
54 const int poc1 = h->ref_list[1][0].poc;
60 const int poc1 = h->ref_list[1][0].field_poc[field];
72 H264Picture * const ref1 = &h->ref_list[1][0];
91 if (4 * h->ref_list[0][j].frame_num + (h->ref_list[0][j].reference & 3) == poc) {
105 H264Picture * const ref1 = &h->ref_list[1][0];
114 cur->ref_poc[sidx][list][j] = 4 * h->ref_list[list][j].frame_num + (h->ref_list[lis
[all...]
H A Dh264_refs.c229 COPY_PICTURE(&h->ref_list[list][i], &h->default_ref_list[list][i]);
312 memset(&h->ref_list[list][index], 0, sizeof(H264Picture)); // FIXME
315 if (ref->long_ref == h->ref_list[list][i].long_ref &&
316 ref->pic_id == h->ref_list[list][i].pic_id)
320 COPY_PICTURE(&h->ref_list[list][i], &h->ref_list[list][i - 1]);
322 COPY_PICTURE(&h->ref_list[list][index], ref);
324 pic_as_field(&h->ref_list[list][index], pic_structure);
332 if ( !h->ref_list[list][index].f.buf[0]
333 || (!FIELD_PICTURE(h) && (h->ref_list[lis
[all...]
H A Dvaapi_h264.c155 * @param[in] ref_list A pointer to the FFmpeg reference list
156 * @param[in] ref_count The number of reference pictures in ref_list
159 H264Picture *ref_list,
164 if (ref_list[i].reference)
165 fill_vaapi_pic(&RefPicList[n++], &ref_list[i], 0);
342 fill_vaapi_RefPicList(slice_param->RefPicList0, h->ref_list[0], h->list_count > 0 ? h->ref_count[0] : 0);
343 fill_vaapi_RefPicList(slice_param->RefPicList1, h->ref_list[1], h->list_count > 1 ? h->ref_count[1] : 0);
158 fill_vaapi_RefPicList(VAPictureH264 RefPicList[32], H264Picture *ref_list, unsigned int ref_count) argument
H A Dh264_mb.c62 H264Picture *ref = &h->ref_list[0][ref_n];
78 H264Picture *ref = &h->ref_list[1][ref_n];
169 H264Picture *ref_pic = &h->ref_list[list][ref];
348 H264Picture *ref = &h->ref_list[0][h->ref_cache[0][scan8[n]]];
358 H264Picture *ref = &h->ref_list[1][h->ref_cache[1][scan8[n]]];
409 mc_dir_part(h, &h->ref_list[0][refn0], n, square, height, delta, 0,
413 mc_dir_part(h, &h->ref_list[1][refn1], n, square, height, delta, 1,
454 H264Picture *ref = &h->ref_list[list][refn];
487 uint8_t **src = h->ref_list[list][refn].f.data;
H A Dh264.c81 if (!h->ref_list[0][ref].f.data[0]) {
85 if ((h->ref_list[0][ref].reference&3) != 3) {
103 AVFrame *last = h->ref_list[0][0].f.data[0] ? &h->ref_list[0][0].f : NULL;
1078 memset(h->ref_list[0], 0, sizeof(h->ref_list[0]));
1079 memset(h->ref_list[1], 0, sizeof(h->ref_list[1]));
H A Dh264_slice.c917 h->ref_list[0][0].poc + h->ref_list[1][0].poc == 2 * cur_poc) {
938 int poc0 = h->ref_list[0][ref0].poc;
941 if (!h->ref_list[0][ref0].long_ref && !h->ref_list[1][ref1].long_ref) {
942 int poc1 = h->ref_list[1][ref1].poc;
1925 h->ref_list[j][i].f.buf[0]) {
1927 AVBuffer *buf = h->ref_list[j][i].f.buf[0]->buffer;
1944 ref2frm[i + 2] = 4 * id_list[i] + (h->ref_list[j][i].reference & 3);
1949 (h->ref_list[
[all...]
H A Ddxva2_h264.c242 const H264Picture *r = &h->ref_list[list][i];
H A Dh264.h487 H264Picture ref_list[2][48]; /**< 0..15: frame refs, 16..47: mbaff field refs. member in struct:H264Context
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dh264_direct.c41 int poc0 = h->ref_list[0][i].poc;
43 if(td == 0 || h->ref_list[0][i].long_ref){
55 const int poc1 = h->ref_list[1][0].poc;
59 const int poc1 = h->ref_list[1][0].field_poc[field];
71 Picture * const ref1 = &h->ref_list[1][0];
90 if (4 * h->ref_list[0][j].frame_num + (h->ref_list[0][j].f.reference & 3) == poc) {
104 Picture * const ref1 = &h->ref_list[1][0];
113 cur->ref_poc[sidx][list][j] = 4 * h->ref_list[list][j].frame_num + (h->ref_list[lis
[all...]
H A Dh264_refs.c195 memcpy(h->ref_list[list], h->default_ref_list[list], sizeof(Picture)*h->ref_count[list]);
265 memset(&h->ref_list[list][index], 0, sizeof(Picture)); //FIXME
268 if(ref->long_ref == h->ref_list[list][i].long_ref && ref->pic_id == h->ref_list[list][i].pic_id)
272 h->ref_list[list][i]= h->ref_list[list][i-1];
274 h->ref_list[list][index]= *ref;
276 pic_as_field(&h->ref_list[list][index], pic_structure);
288 if (!h->ref_list[list][index].f.data[0]) {
291 h->ref_list[lis
[all...]
H A Dvaapi_h264.c154 * @param[in] ref_list A pointer to the Libav reference list
155 * @param[in] ref_count The number of reference pictures in ref_list
158 Picture *ref_list,
163 if (ref_list[i].f.reference)
164 fill_vaapi_pic(&RefPicList[n++], &ref_list[i], 0);
327 fill_vaapi_RefPicList(slice_param->RefPicList0, h->ref_list[0], h->list_count > 0 ? h->ref_count[0] : 0);
328 fill_vaapi_RefPicList(slice_param->RefPicList1, h->ref_list[1], h->list_count > 1 ? h->ref_count[1] : 0);
157 fill_vaapi_RefPicList(VAPictureH264 RefPicList[32], Picture *ref_list, unsigned int ref_count) argument
H A Dh264.c262 Picture *ref= &h->ref_list[0][ref_n];
277 Picture *ref= &h->ref_list[1][ref_n];
355 Picture *ref_pic = &h->ref_list[list][ref];
569 Picture *ref= &h->ref_list[0][ h->ref_cache[0][ scan8[n] ] ];
579 Picture *ref= &h->ref_list[1][ h->ref_cache[1][ scan8[n] ] ];
625 mc_dir_part(h, &h->ref_list[0][refn0], n, square, height, delta, 0,
629 mc_dir_part(h, &h->ref_list[1][refn1], n, square, height, delta, 1,
657 Picture *ref= &h->ref_list[list][refn];
705 uint8_t **src = h->ref_list[list][refn].f.data;
1256 copy_fields(h, h1, ref_list, intra_g
[all...]
H A Ddxva2_h264.c230 const Picture *r = &h->ref_list[list][i];
H A Dh264.h382 Picture ref_list[2][48]; /**< 0..15: frame refs, 16..47: mbaff field refs. member in struct:H264Context
H A Derror_resilience.c736 !h->ref_list[0][0].f.data[0])
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/gpu/drm/ttm/
H A Dttm_object.c42 * @lock: Lock that protects the ref_list list and the
45 * @ref_list: List of ttm_ref_objects to be destroyed at
63 struct list_head ref_list; member in struct:ttm_object_file
290 list_add_tail(&ref->head, &tfile->ref_list);
368 while (!list_empty(&tfile->ref_list)) {
369 list = tfile->ref_list.next;
396 INIT_LIST_HEAD(&tfile->ref_list);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libxml/
H A Dvalid.c2903 xmlListPtr ref_list = ((xmlRemoveMemoPtr)user)->l; local
2906 xmlListRemoveFirst(ref_list, (void *)data);
2942 xmlListPtr ref_list; local
2996 if (NULL == (ref_list = xmlHashLookup(table, value))) {
2997 if (NULL == (ref_list = xmlListCreate(xmlFreeRef, xmlDummyCompare))) {
3003 if (xmlHashAddEntry(table, value, ref_list) < 0) {
3004 xmlListDelete(ref_list);
3011 /* xmlListInsert(ref_list, ret); */
3012 xmlListAppend(ref_list, ret);
3081 xmlListPtr ref_list; local
6445 xmlValidateCheckRefCallback(xmlListPtr ref_list, xmlValidCtxtPtr ctxt, const xmlChar *name) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libxml2-2.7.2/
H A Dvalid.c2912 xmlListPtr ref_list = ((xmlRemoveMemoPtr)user)->l; local
2915 xmlListRemoveFirst(ref_list, (void *)data);
2951 xmlListPtr ref_list; local
3005 if (NULL == (ref_list = xmlHashLookup(table, value))) {
3006 if (NULL == (ref_list = xmlListCreate(xmlFreeRef, xmlDummyCompare))) {
3012 if (xmlHashAddEntry(table, value, ref_list) < 0) {
3013 xmlListDelete(ref_list);
3020 if (xmlListAppend(ref_list, ret) != 0) {
3103 xmlListPtr ref_list; local
3119 ref_list
6571 xmlValidateCheckRefCallback(xmlListPtr ref_list, xmlValidCtxtPtr ctxt, const xmlChar *name) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libxml2-2.7.2/source/
H A Dvalid.c2912 xmlListPtr ref_list = ((xmlRemoveMemoPtr)user)->l; local
2915 xmlListRemoveFirst(ref_list, (void *)data);
2951 xmlListPtr ref_list; local
3005 if (NULL == (ref_list = xmlHashLookup(table, value))) {
3006 if (NULL == (ref_list = xmlListCreate(xmlFreeRef, xmlDummyCompare))) {
3012 if (xmlHashAddEntry(table, value, ref_list) < 0) {
3013 xmlListDelete(ref_list);
3020 if (xmlListAppend(ref_list, ret) != 0) {
3103 xmlListPtr ref_list; local
3119 ref_list
6571 xmlValidateCheckRefCallback(xmlListPtr ref_list, xmlValidCtxtPtr ctxt, const xmlChar *name) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libxml/
H A Dvalid.c2903 xmlListPtr ref_list = ((xmlRemoveMemoPtr)user)->l; local
2906 xmlListRemoveFirst(ref_list, (void *)data);
2942 xmlListPtr ref_list; local
2996 if (NULL == (ref_list = xmlHashLookup(table, value))) {
2997 if (NULL == (ref_list = xmlListCreate(xmlFreeRef, xmlDummyCompare))) {
3003 if (xmlHashAddEntry(table, value, ref_list) < 0) {
3004 xmlListDelete(ref_list);
3011 /* xmlListInsert(ref_list, ret); */
3012 xmlListAppend(ref_list, ret);
3081 xmlListPtr ref_list; local
6445 xmlValidateCheckRefCallback(xmlListPtr ref_list, xmlValidCtxtPtr ctxt, const xmlChar *name) argument
[all...]

Completed in 306 milliseconds