Home | History | Annotate | Download | only in src

Lines Matching refs:poc

990 					guint poc = mix_videofmt_h264_get_poc(&(pRefList[j]));
991 gpointer video_frame = g_hash_table_lookup(self->dpb_surface_table, (gpointer)poc);
1189 guint poc = 0;
1194 poc = mix_videofmt_h264_get_poc(&(pic_data->slc_data[i].slc_parms.RefPicList0[j]));
1195 video_frame = g_hash_table_lookup(self->dpb_surface_table, (gpointer)poc);
1198 LOG_E( "unable to find surface of picture %d (current picture %d).", poc, mix_videofmt_h264_get_poc(&pic_params->CurrPic));
1217 poc
1218 video_frame = g_hash_table_lookup(self->dpb_surface_table, (gpointer)poc);
1221 LOG_E( "unable to find surface of picture %d (current picture %d).", poc, mix_videofmt_h264_get_poc(&pic_params->CurrPic));
1458 guint poc = 0;
1511 poc = mix_videofmt_h264_get_poc(&(pic_params->ReferenceFrames[i]));
1512 LOG_V( "Looking up poc %d in dpb table\n", poc);
1513 found = g_hash_table_lookup_extended(self->dpb_surface_table, (gpointer)poc, NULL, (gpointer)&mvf);
1518 LOG_V( "Looked up poc %d in dpb table found frame ID %d\n", poc, (gint)mvf->frame_id);
1520 LOG_V( "Looking up poc %d in dpb table did not find value\n", poc);
1522 LOG_V( "For poc %d, set surface id for DPB index %d to %d\n", poc, i, (gint)pic_params->ReferenceFrames[i].picture_id);
1534 //Get current frame's POC
1535 poc = mix_videofmt_h264_get_poc(&(pic_params->CurrPic));
1540 LOG_V( "Inserting poc %d, surfaceID %d\n", poc, (gint)current_frame->frame_id);
1542 g_hash_table_insert(self->dpb_surface_table, (gpointer)poc, current_frame);
1599 LOG_V( "Begin, poc of %d\n", (guint)data);