Commit 7765d6b8 authored by Laurent Aimar's avatar Laurent Aimar

Fixed a comment.

parent f1670436
...@@ -303,7 +303,7 @@ void input_DecoderDelete( decoder_t *p_dec ) ...@@ -303,7 +303,7 @@ void input_DecoderDelete( decoder_t *p_dec )
vlc_thread_join( p_dec ); vlc_thread_join( p_dec );
/* Don't module_unneed() here because of the dll loader that wants /* Don't module_unneed() here because of the dll loader that wants
* close() in the same thread than open()/decode() */ * close() in the same thread than decode() */
/* */ /* */
if( p_dec->p_owner->cc.b_supported ) if( p_dec->p_owner->cc.b_supported )
...@@ -794,7 +794,7 @@ static void *DecoderThread( vlc_object_t *p_this ) ...@@ -794,7 +794,7 @@ static void *DecoderThread( vlc_object_t *p_this )
DecoderSignalBuffering( p_dec, true ); DecoderSignalBuffering( p_dec, true );
/* We do it here because of the dll loader that wants close() in the /* We do it here because of the dll loader that wants close() in the
* same thread than open()/decode() */ * same thread than decode() */
module_unneed( p_dec, p_dec->p_module ); module_unneed( p_dec, p_dec->p_module );
vlc_restorecancel( canc ); vlc_restorecancel( canc );
return NULL; return NULL;
......
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