xfree86/xv: Add some helpful comments about ReputImage
Document the fact that ReputImage is used for stills as well as images. Signed-off-by: Ville Syrjälä <ville.syrjala@nokia.com> Reviewed-by: Luc Verhaegen <luc.verhaegen@basyskom.de>
This commit is contained in:
parent
b4ebde23d2
commit
5f8ec1ade8
|
@ -556,7 +556,7 @@ xf86XVInitAdaptors(
|
||||||
adaptorPriv->QueryBestSize = adaptorPtr->QueryBestSize;
|
adaptorPriv->QueryBestSize = adaptorPtr->QueryBestSize;
|
||||||
adaptorPriv->QueryImageAttributes = adaptorPtr->QueryImageAttributes;
|
adaptorPriv->QueryImageAttributes = adaptorPtr->QueryImageAttributes;
|
||||||
adaptorPriv->PutImage = adaptorPtr->PutImage;
|
adaptorPriv->PutImage = adaptorPtr->PutImage;
|
||||||
adaptorPriv->ReputImage = adaptorPtr->ReputImage;
|
adaptorPriv->ReputImage = adaptorPtr->ReputImage; /* image/still */
|
||||||
|
|
||||||
pa->devPriv.ptr = (pointer)adaptorPriv;
|
pa->devPriv.ptr = (pointer)adaptorPriv;
|
||||||
|
|
||||||
|
@ -873,6 +873,7 @@ CLIP_VIDEO_BAILOUT:
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Reput image/still */
|
||||||
static int
|
static int
|
||||||
xf86XVReputImage(XvPortRecPrivatePtr portPriv)
|
xf86XVReputImage(XvPortRecPrivatePtr portPriv)
|
||||||
{
|
{
|
||||||
|
|
|
@ -165,7 +165,7 @@ typedef struct {
|
||||||
GetPortAttributeFuncPtr GetPortAttribute;
|
GetPortAttributeFuncPtr GetPortAttribute;
|
||||||
QueryBestSizeFuncPtr QueryBestSize;
|
QueryBestSizeFuncPtr QueryBestSize;
|
||||||
PutImageFuncPtr PutImage;
|
PutImageFuncPtr PutImage;
|
||||||
ReputImageFuncPtr ReputImage;
|
ReputImageFuncPtr ReputImage; /* image/still */
|
||||||
QueryImageAttributesFuncPtr QueryImageAttributes;
|
QueryImageAttributesFuncPtr QueryImageAttributes;
|
||||||
ClipNotifyFuncPtr ClipNotify;
|
ClipNotifyFuncPtr ClipNotify;
|
||||||
} XF86VideoAdaptorRec, *XF86VideoAdaptorPtr;
|
} XF86VideoAdaptorRec, *XF86VideoAdaptorPtr;
|
||||||
|
|
Loading…
Reference in New Issue