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
9185ed45
Commit
9185ed45
authored
Nov 03, 2014
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "vout: fix picture lock/unlock with private pool"
This mostly reverts commit
6a6c23bf
.
parent
5dfce5ed
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
10 deletions
+2
-10
include/vlc_picture_pool.h
include/vlc_picture_pool.h
+0
-1
src/misc/picture_pool.c
src/misc/picture_pool.c
+0
-7
src/video_output/vout_wrapper.c
src/video_output/vout_wrapper.c
+2
-2
No files found.
include/vlc_picture_pool.h
View file @
9185ed45
...
...
@@ -179,7 +179,6 @@ VLC_USED;
*/
VLC_API
unsigned
picture_pool_GetSize
(
const
picture_pool_t
*
);
bool
picture_pool_NeedsLocking
(
const
picture_pool_t
*
);
#endif
/* VLC_PICTURE_POOL_H */
src/misc/picture_pool.c
View file @
9185ed45
...
...
@@ -208,8 +208,6 @@ error:
picture_pool_t
*
picture_pool_Reserve
(
picture_pool_t
*
master
,
unsigned
count
)
{
assert
(
master
->
pic_unlock
==
NULL
);
picture_t
*
picture
[
count
?
count
:
1
];
unsigned
i
;
...
...
@@ -330,11 +328,6 @@ unsigned picture_pool_GetSize(const picture_pool_t *pool)
return
pool
->
picture_count
;
}
bool
picture_pool_NeedsLocking
(
const
picture_pool_t
*
pool
)
{
return
pool
->
pic_lock
!=
NULL
||
pool
->
pic_unlock
!=
NULL
;
}
void
picture_pool_Enum
(
picture_pool_t
*
pool
,
void
(
*
cb
)(
void
*
,
picture_t
*
),
void
*
opaque
)
{
...
...
src/video_output/vout_wrapper.c
View file @
9185ed45
...
...
@@ -133,8 +133,8 @@ int vout_InitWrapper(vout_thread_t *vout)
picture_pool_t
*
display_pool
=
vout_display_Pool
(
vd
,
allow_dr
?
__MAX
(
VOUT_MAX_PICTURES
,
reserved_picture
+
decoder_picture
)
:
3
);
if
(
allow_dr
&&
!
picture_pool_NeedsLocking
(
display_pool
)
&&
picture_pool_GetSize
(
display_pool
)
>=
reserved_picture
+
decoder_picture
)
{
if
(
allow_dr
&&
picture_pool_GetSize
(
display_pool
)
>=
reserved_picture
+
decoder_picture
)
{
sys
->
dpb_size
=
picture_pool_GetSize
(
display_pool
)
-
reserved_picture
;
sys
->
decoder_pool
=
display_pool
;
sys
->
display_pool
=
display_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