mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-25 21:28:50 +00:00
misc fixes.
*(EphyrHostXVQueryAdaptors): return the queried adaptors list
* (EphyrHostXVQueryPortAttributes): return port attributes number
This commit is contained in:
committed by
Dodji Seketeli
parent
2bf7f3c223
commit
aa2fae7b75
@@ -71,6 +71,7 @@ EphyrHostXVQueryAdaptors (EphyrHostXVAdaptorArray **a_adaptors)
|
||||
EPHYR_LOG_ERROR ("failed to query host adaptors: %d\n", ret) ;
|
||||
goto out ;
|
||||
}
|
||||
*a_adaptors = result ;
|
||||
is_ok = TRUE ;
|
||||
|
||||
out:
|
||||
@@ -207,13 +208,11 @@ EphyrHostXVQueryPortAttributes (int a_port_id,
|
||||
EphyrHostAttribute **a_attributes,
|
||||
int *a_num_attributes)
|
||||
{
|
||||
XvAttribute *attributes=NULL ;
|
||||
int num_attributes=0 ;
|
||||
|
||||
EPHYR_RETURN_VAL_IF_FAIL (a_attributes && a_num_attributes, FALSE) ;
|
||||
|
||||
attributes = XvQueryPortAttributes (hostx_get_display (), a_port_id, &num_attributes) ;
|
||||
*a_attributes = (EphyrHostAttribute*)attributes ;
|
||||
*a_attributes = (EphyrHostAttribute*)XvQueryPortAttributes (hostx_get_display (),
|
||||
a_port_id,
|
||||
a_num_attributes);
|
||||
|
||||
return TRUE ;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user