Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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
vlc-gpu
Commits
3683cc99
Commit
3683cc99
authored
Jul 11, 2010
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Used VA_INVALID_ID when appropriate.
parent
7b27f950
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
5 deletions
+8
-5
modules/codec/avcodec/vaapi.c
modules/codec/avcodec/vaapi.c
+8
-5
No files found.
modules/codec/avcodec/vaapi.c
View file @
3683cc99
...
...
@@ -128,6 +128,8 @@ static int Open( vlc_va_vaapi_t *p_va, int i_codec_id )
/* */
memset
(
p_va
,
0
,
sizeof
(
*
p_va
)
);
p_va
->
i_config_id
=
VA_INVALID_ID
;
p_va
->
i_context_id
=
VA_INVALID_ID
;
/* Create a VA display */
if
(
!
XInitThreads
()
)
...
...
@@ -158,7 +160,7 @@ static int Open( vlc_va_vaapi_t *p_va, int i_codec_id )
if
(
vaCreateConfig
(
p_va
->
p_display
,
i_profile
,
VAEntrypointVLD
,
&
attrib
,
1
,
&
p_va
->
i_config_id
)
)
{
p_va
->
i_config_id
=
0
;
p_va
->
i_config_id
=
VA_INVALID_ID
;
goto
error
;
}
...
...
@@ -182,7 +184,7 @@ static void DestroySurfaces( vlc_va_vaapi_t *p_va )
vaDestroyImage
(
p_va
->
p_display
,
p_va
->
image
.
image_id
);
}
if
(
p_va
->
i_context_id
)
if
(
p_va
->
i_context_id
!=
VA_INVALID_ID
)
vaDestroyContext
(
p_va
->
p_display
,
p_va
->
i_context_id
);
for
(
int
i
=
0
;
i
<
p_va
->
i_surface_count
&&
p_va
->
p_surface
;
i
++
)
...
...
@@ -196,7 +198,7 @@ static void DestroySurfaces( vlc_va_vaapi_t *p_va )
/* */
p_va
->
image
.
image_id
=
VA_INVALID_SURFACE
;
p_va
->
i_context_id
=
0
;
p_va
->
i_context_id
=
VA_INVALID_ID
;
p_va
->
p_surface
=
NULL
;
p_va
->
i_surface_width
=
0
;
p_va
->
i_surface_height
=
0
;
...
...
@@ -211,6 +213,7 @@ static int CreateSurfaces( vlc_va_vaapi_t *p_va, void **pp_hw_ctx, vlc_fourcc_t
if
(
!
p_va
->
p_surface
)
return
VLC_EGENERIC
;
p_va
->
image
.
image_id
=
VA_INVALID_SURFACE
;
p_va
->
i_context_id
=
VA_INVALID_ID
;
/* Create surfaces */
VASurfaceID
pi_surface_id
[
p_va
->
i_surface_count
];
...
...
@@ -236,7 +239,7 @@ static int CreateSurfaces( vlc_va_vaapi_t *p_va, void **pp_hw_ctx, vlc_fourcc_t
i_width
,
i_height
,
VA_PROGRESSIVE
,
pi_surface_id
,
p_va
->
i_surface_count
,
&
p_va
->
i_context_id
)
)
{
p_va
->
i_context_id
=
0
;
p_va
->
i_context_id
=
VA_INVALID_ID
;
goto
error
;
}
...
...
@@ -456,7 +459,7 @@ static void Close( vlc_va_vaapi_t *p_va )
if
(
p_va
->
i_surface_width
||
p_va
->
i_surface_height
)
DestroySurfaces
(
p_va
);
if
(
p_va
->
i_config_id
)
if
(
p_va
->
i_config_id
!=
VA_INVALID_ID
)
vaDestroyConfig
(
p_va
->
p_display
,
p_va
->
i_config_id
);
if
(
p_va
->
p_display
)
vaTerminate
(
p_va
->
p_display
);
...
...
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