[FFmpeg-cvslog] r23809 - trunk/libavcodec/vp8.c

mru subversion
Sun Jun 27 02:37:43 CEST 2010


Author: mru
Date: Sun Jun 27 02:37:43 2010
New Revision: 23809

Log:
vp8: warn and request sample if upscaling specified in header

Modified:
   trunk/libavcodec/vp8.c

Modified: trunk/libavcodec/vp8.c
==============================================================================
--- trunk/libavcodec/vp8.c	Sun Jun 27 00:23:35 2010	(r23808)
+++ trunk/libavcodec/vp8.c	Sun Jun 27 02:37:43 2010	(r23809)
@@ -399,6 +399,9 @@ static int decode_frame_header(VP8Contex
         buf      += 7;
         buf_size -= 7;
 
+        if (hscale || vscale)
+            av_log_missing_feature(s->avctx, "Upscaling", 1);
+
         s->update_golden = s->update_altref = VP56_FRAME_CURRENT;
         memcpy(s->prob->token    , vp8_token_default_probs , sizeof(s->prob->token));
         memcpy(s->prob->pred16x16, vp8_pred16x16_prob_inter, sizeof(s->prob->pred16x16));



More information about the ffmpeg-cvslog mailing list