echo Installation prefix .............. : $prefix
echo Default driver path .............. : $LIBVA_DRIVERS_PATH
echo Extra window systems ............. : $BACKENDS
+echo build dummy backend .............. : $enable_dummy_backend
echo Build dummy driver ............... : $enable_dummy_driver
echo Build documentation .............. : $enable_docs
echo
} devices[] = {
{ 0x8086, 0x4100, "pvr" },
{ 0x8086, 0x0130, "pvr" },
+ { 0x1010, 0x1cf2, "pvr" },
{ 0x0, 0x0, "\0" },
};
} devices[] = {
{ 0x8086, 0x4100, "pvr" },
{ 0x8086, 0x0130, "pvr" },
+ { 0x1010, 0x1cf2, "pvr" },
{ 0x0, 0x0, "\0" },
};
destx, desty, destw, desth,
cliprects, number_cliprects, flags );
}
+#else
+VAStatus vaPutSurface (
+ VADisplay dpy,
+ VASurfaceID surface,
+ void *draw,
+ short srcx,
+ short srcy,
+ unsigned short srcw,
+ unsigned short srch,
+ short destx,
+ short desty,
+ unsigned short destw,
+ unsigned short desth,
+ VARectangle *cliprects, /* client supplied clip list */
+ unsigned int number_cliprects, /* number of clip rects in the clip list */
+ unsigned int flags /* de-interlacing flags */
+)
+{
+ return VA_STATUS_SUCCESS;
+}
#endif