Lines Matching defs:pSubpicture
361 XvMCSubpicturePtr pSubpicture;
405 if(!(pSubpicture = malloc(sizeof(XvMCSubpictureRec))))
408 pSubpicture->subpicture_id = stuff->subpicture_id;
409 pSubpicture->xvimage_id = stuff->xvimage_id;
410 pSubpicture->width = stuff->width;
411 pSubpicture->height = stuff->height;
412 pSubpicture->num_palette_entries = 0; /* overwritten by DDX */
413 pSubpicture->entry_bytes = 0; /* overwritten by DDX */
414 pSubpicture->component_order[0] = 0; /* overwritten by DDX */
415 pSubpicture->component_order[1] = 0;
416 pSubpicture->component_order[2] = 0;
417 pSubpicture->component_order[3] = 0;
418 pSubpicture->context = pContext;
421 pSubpicture, &dwords, &data);
424 free(pSubpicture);
430 rep.width_actual = pSubpicture->width;
431 rep.height_actual = pSubpicture->height;
432 rep.num_palette_entries = pSubpicture->num_palette_entries;
433 rep.entry_bytes = pSubpicture->entry_bytes;
434 rep.component_order[0] = pSubpicture->component_order[0];
435 rep.component_order[1] = pSubpicture->component_order[1];
436 rep.component_order[2] = pSubpicture->component_order[2];
437 rep.component_order[3] = pSubpicture->component_order[3];
443 AddResource(pSubpicture->subpicture_id, XvMCRTSubpicture, pSubpicture);