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:
Ville Syrjälä 2010-11-02 16:04:36 +02:00
parent b4ebde23d2
commit 5f8ec1ade8
2 changed files with 3 additions and 2 deletions

View File

@ -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)
{ {

View File

@ -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;