support skiping of mb rows during decoding

Originally committed as revision 3253 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer
2004-06-26 02:20:38 +00:00
parent 75293f05f9
commit 0dfd33c3f1
3 changed files with 24 additions and 4 deletions

View File

@@ -17,7 +17,7 @@ extern "C" {
#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 @@ typedef struct AVCodecContext {
* - 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;