From: Laurent Aimar Date: Thu, 23 Oct 2008 19:11:21 +0000 (+0200) Subject: Fixed a comment. X-Git-Tag: 1.0.0-pre1~2341 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=7765d6b8e5272afdfecfa9bbf2c841e87d552cfe;p=vlc Fixed a comment. --- diff --git a/src/input/decoder.c b/src/input/decoder.c index 8bb043b3c0..2fc0d31150 100644 --- a/src/input/decoder.c +++ b/src/input/decoder.c @@ -303,7 +303,7 @@ void input_DecoderDelete( decoder_t *p_dec ) vlc_thread_join( p_dec ); /* 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 ) @@ -794,7 +794,7 @@ static void *DecoderThread( vlc_object_t *p_this ) DecoderSignalBuffering( p_dec, true ); /* 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 ); vlc_restorecancel( canc ); return NULL;