]> git.sesse.net Git - vlc/commitdiff
Fixed a comment.
authorLaurent Aimar <fenrir@videolan.org>
Thu, 23 Oct 2008 19:11:21 +0000 (21:11 +0200)
committerLaurent Aimar <fenrir@videolan.org>
Thu, 23 Oct 2008 19:11:21 +0000 (21:11 +0200)
src/input/decoder.c

index 8bb043b3c05475b23568868f79c045e09312a4c9..2fc0d3115008e9799fc7b721885bfe1d1cfce81b 100644 (file)
@@ -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;