]> git.sesse.net Git - vlc/commitdiff
We don't want to use this module for avc1
authorFelix Paul Kühne <fkuehne@videolan.org>
Mon, 30 Jun 2008 14:02:48 +0000 (16:02 +0200)
committerFelix Paul Kühne <fkuehne@videolan.org>
Mon, 30 Jun 2008 14:03:54 +0000 (16:03 +0200)
modules/codec/quicktime.c

index 8833a8b2239866d514c8dfe4c700e69920543519..a417fdd628d2f45e4d5243037e1ce9fbc9c201fd 100644 (file)
@@ -242,7 +242,6 @@ static int Open( vlc_object_t *p_this )
     switch( p_dec->fmt_in.i_codec )
     {
         case VLC_FOURCC('h','2','6','4'): /* H.264 */
-        case VLC_FOURCC('a','v','c','1'): /* dto. */
         case VLC_FOURCC('c','v','i','d'): /* Cinepak */
         case VLC_FOURCC('I','V','4','1'): /* Indeo Video IV */
         case VLC_FOURCC('i','v','4','1'): /* dto. */
@@ -905,11 +904,13 @@ static picture_t *DecodeVideo( decoder_t *p_dec, block_t **pp_block )
     {
         p_sys->i_late = 0;
     }
+#ifndef NDEBUG
     msg_Dbg( p_dec, "bufsize: %d", (int)p_block->i_buffer);
+#endif
 
     if( p_sys->i_late > 10 )
     {
-        msg_Dbg( p_dec, "too late buffer -> dropped" );
+        msg_Dbg( p_dec, "late buffer dropped (%i)", i_pts );
         block_Release( p_block );
         return NULL;
     }