Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
d95b9235
Commit
d95b9235
authored
Dec 02, 2001
by
Florian G. Pflug
Browse files
*) Fixed stupid bug in vout_Manage. It sometimes called SetDSequenceMatrix
when there was no valid sequence.
parent
43ed15cb
Changes
1
Hide whitespace changes
Inline
Side-by-side
plugins/macosx/vout_macosx.c
View file @
d95b9235
...
...
@@ -190,8 +190,10 @@ static int vout_Manage( vout_thread_t *p_vout )
create_QTSequenceBestCodec
(
p_vout
)
;
}
else
if
(
p_vout
->
p_sys
->
osx_communication
.
i_changes
&
OSX_INTF_VOUT_SIZE_CHANGE
)
{
fillout_ScalingMatrix
(
p_vout
)
;
SetDSequenceMatrix
(
p_vout
->
p_sys
->
i_seq
,
p_vout
->
p_sys
->
p_matrix
)
;
if
(
p_vout
->
p_sys
->
c_codec
!=
'
NONE
'
)
{
fillout_ScalingMatrix
(
p_vout
)
;
SetDSequenceMatrix
(
p_vout
->
p_sys
->
i_seq
,
p_vout
->
p_sys
->
p_matrix
)
;
}
}
p_vout
->
p_sys
->
osx_communication
.
i_changes
&=
~
(
...
...
@@ -237,6 +239,8 @@ void vout_Display( vout_thread_t *p_vout )
nil
)
;
break
;
default:
intf_WarnMsg
(
1
,
"vout_macosx: vout_Display called, but no codec available"
)
;
}
}
...
...
Write
Preview
Supports
Markdown
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