OSDN Git Service

vc1dec: Remove interlaced warning
authorMichael Niedermayer <michaelni@gmx.at>
Fri, 26 Apr 2013 01:44:05 +0000 (03:44 +0200)
committerMartin Storsjö <martin@martin.st>
Tue, 28 May 2013 10:56:29 +0000 (13:56 +0300)
Also add a note about the feature in the changelog.

Signed-off-by: Martin Storsjö <martin@martin.st>
Changelog
libavcodec/vc1.c
libavcodec/vc1.h
libavcodec/version.h

index b8fbca2..a20d62f 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -21,6 +21,7 @@ version 10:
 - Apple Intermediate Codec decoder
 - Escape 130 video decoder
 - support for slice multithreading in libavfilter
+- VC-1 interlaced B-frame support
 
 
 version 9:
index 7d09234..d6586bf 100644 (file)
@@ -854,9 +854,6 @@ int ff_vc1_parse_frame_header_adv(VC1Context *v, GetBitContext* gb)
         if (fcm) {
             if (fcm == ILACE_FIELD)
                 field_mode = 1;
-            if (!v->warn_interlaced++)
-                av_log(v->s.avctx, AV_LOG_ERROR,
-                       "Interlaced frames/fields support is incomplete\n");
         }
     } else {
         fcm = PROGRESSIVE;
index 8439203..0ece45a 100644 (file)
@@ -401,8 +401,6 @@ typedef struct VC1Context{
     int end_mb_x;                ///< Horizontal macroblock limit (used only by mss2)
 
     int parse_only;              ///< Context is used within parser
-
-    int warn_interlaced;
 } VC1Context;
 
 /** Find VC-1 marker in buffer
index 5fd9bd2..f3a2668 100644 (file)
@@ -28,7 +28,7 @@
 
 #define LIBAVCODEC_VERSION_MAJOR 55
 #define LIBAVCODEC_VERSION_MINOR  7
-#define LIBAVCODEC_VERSION_MICRO  0
+#define LIBAVCODEC_VERSION_MICRO  1
 
 #define LIBAVCODEC_VERSION_INT  AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
                                                LIBAVCODEC_VERSION_MINOR, \