Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libva
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
libva
Commits
1a1376c4
Commit
1a1376c4
authored
Dec 06, 2007
by
Waldo Bastian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add vainfo utility to get baseic driver info from command line
parent
7fbb1e8a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
85 additions
and
4 deletions
+85
-4
src/va.c
src/va.c
+6
-3
test/Makefile.am
test/Makefile.am
+6
-1
test/vainfo.c
test/vainfo.c
+73
-0
No files found.
src/va.c
View file @
1a1376c4
...
@@ -34,9 +34,12 @@
...
@@ -34,9 +34,12 @@
#include <unistd.h>
#include <unistd.h>
#include "va_dri.h"
#include "va_dri.h"
#define VA_MAJOR_VERSION 0
#define VA_MINOR_VERSION 26
#define DRIVER_INIT_FUNC "__vaDriverInit_0_26"
#define DEFAULT_DRIVER_DIR "/usr/X11R6/lib/modules/dri"
#define DEFAULT_DRIVER_DIR "/usr/X11R6/lib/modules/dri"
#define DRIVER_EXTENSION "_drv_video.so"
#define DRIVER_EXTENSION "_drv_video.so"
#define DRIVER_INIT_FUNC "__vaDriverInit_0_26"
#define CTX(dpy) ((VADriverContextP) dpy );
#define CTX(dpy) ((VADriverContextP) dpy );
#define CHECK_CONTEXT(dpy) if( !vaContextIsValid(dpy) ) { return VA_STATUS_ERROR_INVALID_DISPLAY; }
#define CHECK_CONTEXT(dpy) if( !vaContextIsValid(dpy) ) { return VA_STATUS_ERROR_INVALID_DISPLAY; }
...
@@ -397,8 +400,8 @@ VAStatus vaInitialize (
...
@@ -397,8 +400,8 @@ VAStatus vaInitialize (
vaStatus
=
va_openDriver
(
ctx
,
driver_name
);
vaStatus
=
va_openDriver
(
ctx
,
driver_name
);
va_infoMessage
(
"va_openDriver() returns %d
\n
"
,
vaStatus
);
va_infoMessage
(
"va_openDriver() returns %d
\n
"
,
vaStatus
);
*
major_version
=
ctx
->
version_major
;
*
major_version
=
VA_MAJOR_VERSION
;
*
minor_version
=
ctx
->
version_minor
;
*
minor_version
=
VA_MINOR_VERSION
;
}
}
if
(
driver_name
)
if
(
driver_name
)
...
...
test/Makefile.am
View file @
1a1376c4
...
@@ -23,13 +23,18 @@
...
@@ -23,13 +23,18 @@
check_PROGRAMS
=
test_01 test_02 test_03 test_04 test_05 test_06
\
check_PROGRAMS
=
test_01 test_02 test_03 test_04 test_05 test_06
\
test_07 test_08 test_09 test_10 test_11
test_07 test_08 test_09 test_10 test_11
bin_PROGRAMS
=
vainfo
testdir
=
$(bindir)
testdir
=
$(bindir)
AM_CFLAGS
=
-I
$(top_srcdir)
/../../include/external/
-I
$(top_srcdir)
/src
AM_CFLAGS
=
-I
$(top_srcdir)
/../../include/external/
-I
$(top_srcdir)
/src
TESTS
=
$(check_PROGRAMS)
TESTS
=
$(check_PROGRAMS)
TEST_LIBS
=
../src/libva.la ../../psb-video/src/psb_drv_video.la
TEST_LIBS
=
../src/libva.la
vainfo_LDADD
=
../src/libva.la
vainfo_SOURCES
=
vainfo.c
test_01_LDADD
=
$(TEST_LIBS)
test_01_LDADD
=
$(TEST_LIBS)
test_01_SOURCES
=
test_01.c
test_01_SOURCES
=
test_01.c
...
...
test/vainfo.c
0 → 100644
View file @
1a1376c4
/*
* Copyright (c) 2007 Intel Corporation. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sub license, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice (including the
* next paragraph) shall be included in all copies or substantial portions
* of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
* IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
* ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include "va.h"
#include "X11/Xlib.h"
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
int
main
(
int
argc
,
const
char
*
argv
[])
{
Display
*
dpy
;
VADisplay
va_dpy
;
VAStatus
va_status
;
int
major_version
,
minor_version
;
const
char
*
driver
;
const
char
*
display
=
getenv
(
"DISPLAY"
);
const
char
*
name
=
rindex
(
argv
[
0
],
'/'
);
if
(
name
)
name
++
;
else
name
=
argv
[
0
];
dpy
=
XOpenDisplay
(
NULL
);
if
(
NULL
==
dpy
)
{
fprintf
(
stderr
,
"%s: Error, can't open display: '%s'
\n
"
,
name
,
display
?
display
:
""
);
return
1
;
}
va_dpy
=
vaGetDisplay
(
dpy
);
if
(
NULL
==
va_dpy
)
{
fprintf
(
stderr
,
"%s: vaGetDisplay() failed
\n
"
,
name
);
return
2
;
}
va_status
=
vaInitialize
(
va_dpy
,
&
major_version
,
&
minor_version
);
if
(
VA_STATUS_SUCCESS
!=
va_status
)
{
fprintf
(
stderr
,
"%s: vaInitialize failed with error code %d (%s)
\n
"
,
name
,
va_status
,
vaErrorStr
(
va_status
));
}
printf
(
"%s: VA API version: %d.%d
\n
"
,
name
,
major_version
,
minor_version
);
driver
=
vaQueryVendorString
(
va_dpy
);
printf
(
"%s: Driver version: %s
\n
"
,
name
,
driver
?
driver
:
"<unknown>"
);
vaTerminate
(
va_dpy
);
return
0
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment