[vlc-devel] commit: We don't want to use this module for avc1 ( Felix Paul Kühne )
git version control
git at videolan.org
Mon Jun 30 16:01:47 CEST 2008
vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Mon Jun 30 16:02:48 2008 +0200| [e8e4876a7061b7fe269b4a2b90ec2298b09d8f5c]
We don't want to use this module for avc1
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e8e4876a7061b7fe269b4a2b90ec2298b09d8f5c
---
modules/codec/quicktime.c | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/modules/codec/quicktime.c b/modules/codec/quicktime.c
index 8833a8b..a417fdd 100644
--- a/modules/codec/quicktime.c
+++ b/modules/codec/quicktime.c
@@ -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;
}
More information about the vlc-devel
mailing list