Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
3139a7fb
Commit
3139a7fb
authored
Oct 14, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* src/video_output/video_output.c: a couple of fixes.
parent
4b753bdd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
13 deletions
+1
-13
src/video_output/video_output.c
src/video_output/video_output.c
+1
-13
No files found.
src/video_output/video_output.c
View file @
3139a7fb
...
...
@@ -143,7 +143,7 @@ vout_thread_t * __vout_Request ( vlc_object_t *p_this, vout_thread_t *p_vout,
* performance reasons. */
if
(
p_vout
->
b_filter_change
)
{
var_Get
(
p_
this
,
"filter"
,
&
val
);
var_Get
(
p_
vout
,
"filter"
,
&
val
);
psz_filter_chain
=
val
.
psz_string
;
if
(
psz_filter_chain
&&
!*
psz_filter_chain
)
...
...
@@ -1278,8 +1278,6 @@ typedef struct suxor_thread_t
{
VLC_COMMON_MEMBERS
input_thread_t
*
p_input
;
vout_thread_t
*
p_vout
;
char
*
psz_mode
;
}
suxor_thread_t
;
...
...
@@ -1287,16 +1285,6 @@ static void SuxorRestartVideoES( suxor_thread_t *p_this )
{
vlc_value_t
val
;
if
(
p_this
->
psz_mode
)
{
vlc_value_t
val
;
val
.
psz_string
=
p_this
->
psz_mode
;
var_Set
(
p_this
->
p_vout
,
"deinterlace-mode"
,
val
);
free
(
p_this
->
psz_mode
);
}
if
(
p_this
->
p_vout
)
vlc_object_release
(
p_this
->
p_vout
);
/* Now restart current video stream */
var_Get
(
p_this
->
p_input
,
"video-es"
,
&
val
);
if
(
val
.
i_int
>=
0
)
...
...
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