Commit d95b9235 authored by Florian G. Pflug's avatar Florian G. Pflug

*) Fixed stupid bug in vout_Manage. It sometimes called SetDSequenceMatrix

    when there was no valid sequence.
parent 43ed15cb
......@@ -190,9 +190,11 @@ 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 ) {
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 &= ~(
OSX_INTF_VOUT_QDPORT_CHANGE |
......@@ -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" ) ;
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment