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
31872a22
Commit
31872a22
authored
Feb 08, 2016
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vmem: unroll sys->unlock check
parent
a5b262e2
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
modules/video_output/vmem.c
modules/video_output/vmem.c
+3
-4
No files found.
modules/video_output/vmem.c
View file @
31872a22
...
@@ -119,9 +119,7 @@ static void Unlock(void *data, picture_t *pic)
...
@@ -119,9 +119,7 @@ static void Unlock(void *data, picture_t *pic)
for
(
int
i
=
0
;
i
<
pic
->
i_planes
;
i
++
)
for
(
int
i
=
0
;
i
<
pic
->
i_planes
;
i
++
)
planes
[
i
]
=
pic
->
p
[
i
].
p_pixels
;
planes
[
i
]
=
pic
->
p
[
i
].
p_pixels
;
if
(
sys
->
unlock
!=
NULL
)
sys
->
unlock
(
sys
->
opaque
,
picsys
->
id
,
planes
);
sys
->
unlock
(
sys
->
opaque
,
picsys
->
id
,
planes
);
}
}
/*****************************************************************************
/*****************************************************************************
...
@@ -256,6 +254,7 @@ static void Close(vlc_object_t *object)
...
@@ -256,6 +254,7 @@ static void Close(vlc_object_t *object)
if
(
sys
->
pool
)
if
(
sys
->
pool
)
{
{
if
(
sys
->
unlock
!=
NULL
)
picture_pool_Enum
(
sys
->
pool
,
Unlock
,
sys
);
picture_pool_Enum
(
sys
->
pool
,
Unlock
,
sys
);
picture_pool_Release
(
sys
->
pool
);
picture_pool_Release
(
sys
->
pool
);
}
}
...
...
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