Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
ecfae69b
Commit
ecfae69b
authored
May 20, 2011
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
codec/avcodec/vaapi: remove debugging asserts.
parent
3c55e854
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
4 deletions
+0
-4
modules/codec/avcodec/vaapi.c
modules/codec/avcodec/vaapi.c
+0
-3
modules/codec/avcodec/vaapi_x11.c
modules/codec/avcodec/vaapi_x11.c
+0
-1
No files found.
modules/codec/avcodec/vaapi.c
View file @
ecfae69b
...
...
@@ -428,15 +428,12 @@ static int DisplayPicture( vlc_va_t *p_external, picture_t *p_picture, AVFrame *
#endif
return
VLC_EGENERIC
;
assert
(
p_picture
->
p_sys
);
if
(
!
p_picture
->
p_sys
)
return
VLC_EGENERIC
;
if
(
p_picture
->
p_sys
->
b_own_vout
)
return
VLC_SUCCESS
;
assert
(
sizeof
(
p_picture
->
p_sys
)
==
sizeof
(
picture_sys_t
)
);
/* FindSurface */
p_picture
->
p_sys
->
surface
=
FindSurface
(
p_external
,
i_surface_id
);
if
(
!
p_picture
->
p_sys
->
surface
)
...
...
modules/codec/avcodec/vaapi_x11.c
View file @
ecfae69b
...
...
@@ -757,7 +757,6 @@ static void Render(vout_display_t *vd, picture_t *picture, subpicture_t *subpict
static
void
PictureReleaseLocked
(
picture_t
*
pic
)
{
assert
(
pic
);
assert
(
sizeof
(
pic
->
p_sys
)
==
sizeof
(
picture_sys_t
));
if
(
pic
->
p_sys
&&
pic
->
p_sys
->
surface
)
{
...
...
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