[FFmpeg-cvslog] r10277 - trunk/libavcodec/vp6.c
aurel
subversion
Sat Sep 1 15:04:25 CEST 2007
Author: aurel
Date: Sat Sep 1 15:04:25 2007
New Revision: 10277
Log:
add a warning message for unsupported kind of encoding
Modified:
trunk/libavcodec/vp6.c
Modified: trunk/libavcodec/vp6.c
==============================================================================
--- trunk/libavcodec/vp6.c (original)
+++ trunk/libavcodec/vp6.c Sat Sep 1 15:04:25 2007
@@ -126,7 +126,9 @@ static int vp6_parse_header(vp56_context
s->filter_selection = 16;
}
- vp56_rac_get(c);
+ if (vp56_rac_get(c))
+ av_log(s->avctx, AV_LOG_WARNING,
+ "alternative entropy decoding not supported\n");
if (coeff_offset) {
vp56_init_range_decoder(&s->cc, buf+coeff_offset,
More information about the ffmpeg-cvslog
mailing list