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
77e04037
Commit
77e04037
authored
May 11, 2010
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
No functionnal changes (vout).
parent
ea3a73d0
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
58 additions
and
143 deletions
+58
-143
src/video_output/control.h
src/video_output/control.h
+2
-2
src/video_output/video_output.c
src/video_output/video_output.c
+53
-131
src/video_output/vout_internal.h
src/video_output/vout_internal.h
+2
-7
src/video_output/vout_wrapper.c
src/video_output/vout_wrapper.c
+1
-3
No files found.
src/video_output/control.h
View file @
77e04037
...
@@ -30,10 +30,10 @@
...
@@ -30,10 +30,10 @@
/* */
/* */
enum
{
enum
{
#if 0
VOUT_CONTROL_INIT
,
VOUT_CONTROL_INIT
,
VOUT_CONTROL_
EXIT
,
VOUT_CONTROL_
CLEAN
,
#if 0
/* */
/* */
VOUT_CONTROL_START,
VOUT_CONTROL_START,
VOUT_CONTROL_STOP,
VOUT_CONTROL_STOP,
...
...
src/video_output/video_output.c
View file @
77e04037
This diff is collapsed.
Click to expand it.
src/video_output/vout_internal.h
View file @
77e04037
...
@@ -53,10 +53,7 @@ struct vout_thread_sys_t
...
@@ -53,10 +53,7 @@ struct vout_thread_sys_t
/* Thread & synchronization */
/* Thread & synchronization */
vlc_thread_t
thread
;
vlc_thread_t
thread
;
vlc_cond_t
change_wait
;
bool
dead
;
bool
b_ready
;
bool
b_done
;
bool
b_error
;
vout_control_t
control
;
vout_control_t
control
;
/* */
/* */
...
@@ -124,8 +121,6 @@ struct vout_thread_sys_t
...
@@ -124,8 +121,6 @@ struct vout_thread_sys_t
picture_fifo_t
*
decoder_fifo
;
picture_fifo_t
*
decoder_fifo
;
bool
is_decoder_pool_slow
;
bool
is_decoder_pool_slow
;
vout_chrono_t
render
;
/**< picture render time estimator */
vout_chrono_t
render
;
/**< picture render time estimator */
vlc_mutex_t
change_lock
;
/**< thread change lock */
};
};
/* TODO to move them to vlc_vout.h */
/* TODO to move them to vlc_vout.h */
...
@@ -146,7 +141,7 @@ int vout_OpenWrapper (vout_thread_t *, const char *);
...
@@ -146,7 +141,7 @@ int vout_OpenWrapper (vout_thread_t *, const char *);
void
vout_CloseWrapper
(
vout_thread_t
*
);
void
vout_CloseWrapper
(
vout_thread_t
*
);
int
vout_InitWrapper
(
vout_thread_t
*
);
int
vout_InitWrapper
(
vout_thread_t
*
);
void
vout_EndWrapper
(
vout_thread_t
*
);
void
vout_EndWrapper
(
vout_thread_t
*
);
int
vout_ManageWrapper
(
vout_thread_t
*
);
void
vout_ManageWrapper
(
vout_thread_t
*
);
void
vout_RenderWrapper
(
vout_thread_t
*
,
picture_t
*
);
void
vout_RenderWrapper
(
vout_thread_t
*
,
picture_t
*
);
void
vout_DisplayWrapper
(
vout_thread_t
*
,
picture_t
*
);
void
vout_DisplayWrapper
(
vout_thread_t
*
,
picture_t
*
);
...
...
src/video_output/vout_wrapper.c
View file @
77e04037
...
@@ -179,7 +179,7 @@ void vout_EndWrapper(vout_thread_t *vout)
...
@@ -179,7 +179,7 @@ void vout_EndWrapper(vout_thread_t *vout)
/*****************************************************************************
/*****************************************************************************
*
*
*****************************************************************************/
*****************************************************************************/
int
vout_ManageWrapper
(
vout_thread_t
*
vout
)
void
vout_ManageWrapper
(
vout_thread_t
*
vout
)
{
{
vout_thread_sys_t
*
sys
=
vout
->
p
;
vout_thread_sys_t
*
sys
=
vout
->
p
;
vout_display_t
*
vd
=
sys
->
display
.
vd
;
vout_display_t
*
vd
=
sys
->
display
.
vd
;
...
@@ -189,8 +189,6 @@ int vout_ManageWrapper(vout_thread_t *vout)
...
@@ -189,8 +189,6 @@ int vout_ManageWrapper(vout_thread_t *vout)
if
(
reset_display_pool
)
if
(
reset_display_pool
)
sys
->
display_pool
=
vout_display_Pool
(
vd
,
3
);
sys
->
display_pool
=
vout_display_Pool
(
vd
,
3
);
return
VLC_SUCCESS
;
}
}
/*****************************************************************************
/*****************************************************************************
...
...
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