Lines Matching refs:DPB
1005 if (!h->DPB[0].f->data[0] ||
1006 (!h->DPB[1].f->data[0] && h->cur.f->pict_type == AV_PICTURE_TYPE_B))
1041 h->dist[0] = (h->cur.poc - h->DPB[0].poc) & 511;
1043 h->dist[0] = (h->DPB[0].poc - h->cur.poc) & 511;
1045 h->dist[1] = (h->cur.poc - h->DPB[1].poc) & 511;
1160 av_frame_unref(h->DPB[1].f);
1161 FFSWAP(AVSFrame, h->cur, h->DPB[1]);
1162 FFSWAP(AVSFrame, h->DPB[0], h->DPB[1]);
1247 if (!h->low_delay && h->DPB[0].f->data[0]) {
1249 av_frame_move_ref(rframe, h->DPB[0].f);
1273 av_frame_unref(h->DPB[0].f);
1274 av_frame_unref(h->DPB[1].f);
1292 if (h->DPB[!h->low_delay].f->data[0]) {
1293 if ((ret = av_frame_ref(rframe, h->DPB[!h->low_delay].f)) < 0)