Browse code

vc1dec: Remove interlaced warning

Also add a note about the feature in the changelog.

Signed-off-by: Martin Storsjö <martin@martin.st>

Michael Niedermayer authored on 2013/04/26 10:44:05
Showing 4 changed files
... ...
@@ -21,6 +21,7 @@ version 10:
21 21
 - Apple Intermediate Codec decoder
22 22
 - Escape 130 video decoder
23 23
 - support for slice multithreading in libavfilter
24
+- VC-1 interlaced B-frame support
24 25
 
25 26
 
26 27
 version 9:
... ...
@@ -854,9 +854,6 @@ int ff_vc1_parse_frame_header_adv(VC1Context *v, GetBitContext* gb)
854 854
         if (fcm) {
855 855
             if (fcm == ILACE_FIELD)
856 856
                 field_mode = 1;
857
-            if (!v->warn_interlaced++)
858
-                av_log(v->s.avctx, AV_LOG_ERROR,
859
-                       "Interlaced frames/fields support is incomplete\n");
860 857
         }
861 858
     } else {
862 859
         fcm = PROGRESSIVE;
... ...
@@ -401,8 +401,6 @@ typedef struct VC1Context{
401 401
     int end_mb_x;                ///< Horizontal macroblock limit (used only by mss2)
402 402
 
403 403
     int parse_only;              ///< Context is used within parser
404
-
405
-    int warn_interlaced;
406 404
 } VC1Context;
407 405
 
408 406
 /** Find VC-1 marker in buffer
... ...
@@ -28,7 +28,7 @@
28 28
 
29 29
 #define LIBAVCODEC_VERSION_MAJOR 55
30 30
 #define LIBAVCODEC_VERSION_MINOR  7
31
-#define LIBAVCODEC_VERSION_MICRO  0
31
+#define LIBAVCODEC_VERSION_MICRO  1
32 32
 
33 33
 #define LIBAVCODEC_VERSION_INT  AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
34 34
                                                LIBAVCODEC_VERSION_MINOR, \