Lines Matching refs:sub
11 * distribute, sub license, and/or sell copies of the Software, and to
69 vlVaSubpicture *sub;
83 sub = CALLOC(1, sizeof(*sub));
84 if (!sub) {
89 sub->image = img;
90 *subpicture = handle_table_add(VL_VA_DRIVER(ctx)->htab, sub);
100 vlVaSubpicture *sub;
108 sub = handle_table_get(drv->htab, subpicture);
109 if (!sub) {
114 FREE(sub);
125 vlVaSubpicture *sub;
140 sub = handle_table_get(drv->htab, subpicture);
142 if (!sub)
145 sub->image = img;
177 vlVaSubpicture *sub;
191 sub = handle_table_get(drv->htab, subpicture);
192 if (!sub) {
205 sub->src_rect = src_rect;
206 sub->dst_rect = dst_rect;
230 sub->sampler = drv->pipe->create_sampler_view(drv->pipe, tex, &sampler_templ);
232 if (!sub->sampler) {
239 util_dynarray_append(&surf->subpics, vlVaSubpicture *, sub);
253 vlVaSubpicture *sub, **array;
261 sub = handle_table_get(drv->htab, subpicture);
262 if (!sub) {
279 if (array[j] == sub)
286 pipe_sampler_view_reference(&sub->sampler,NULL);