diff avcodec.h @ 2095:5ab35105671a libavcodec

support skiping of mb rows during decoding
author michael
date Sat, 26 Jun 2004 02:20:38 +0000
parents 02a4fd7c606c
children ce669c39e3d5
line wrap: on
line diff
--- a/avcodec.h	Fri Jun 25 19:14:23 2004 +0000
+++ b/avcodec.h	Sat Jun 26 02:20:38 2004 +0000
@@ -17,7 +17,7 @@
 
 #define FFMPEG_VERSION_INT     0x000408
 #define FFMPEG_VERSION         "0.4.8"
-#define LIBAVCODEC_BUILD       4716
+#define LIBAVCODEC_BUILD       4717
 
 #define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT
 #define LIBAVCODEC_VERSION     FFMPEG_VERSION
@@ -1605,6 +1605,20 @@
      * - decoding: unused
      */
      int nsse_weight;
+
+    /**
+     * number of macroblock rows at the top which are skiped.
+     * - encoding: unused
+     * - decoding: set by user
+     */
+     int skip_top;
+
+    /**
+     * number of macroblock rows at the bottom which are skiped.
+     * - encoding: unused
+     * - decoding: set by user
+     */
+     int skip_bottom;
 } AVCodecContext;