[vlc-devel] [PATCH 02/10] avcodec: fix warning to mention correct late frame amount
ileoo at videolan.org
ileoo at videolan.org
Sun Sep 4 14:30:06 CEST 2016
From: Ilkka Ollakka <ileoo at videolan.org>
---
modules/codec/avcodec/video.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/codec/avcodec/video.c b/modules/codec/avcodec/video.c
index 027ebf2..0d5727b 100644
--- a/modules/codec/avcodec/video.c
+++ b/modules/codec/avcodec/video.c
@@ -719,7 +719,7 @@ static picture_t *DecodeVideo( decoder_t *p_dec, block_t **pp_block )
p_sys->i_late_frames--; /* needed else it will never be decrease */
if( p_block )
block_Release( p_block );
- msg_Warn( p_dec, "More than 4 late frames, dropping frame" );
+ msg_Warn( p_dec, "More than 11 late frames, dropping frame" );
return NULL;
}
}
--
2.6.6
More information about the vlc-devel
mailing list