diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-12-08 11:46:16 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-12-08 11:46:16 +0000 |
commit | bbf18b21b76f61da7df206a3084cd34341de44d0 (patch) | |
tree | 9c533a760a891661c347bf0b0016a96b5a8e292a /libavcodec/avcodec.h | |
parent | 2f3eca0806a0d45c167beae4d42d7473b437c8ae (diff) | |
download | ffmpeg-bbf18b21b76f61da7df206a3084cd34341de44d0.tar.gz |
frame skip support
Originally committed as revision 3742 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index bbc3cedf1f..42a800d88e 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -17,7 +17,7 @@ extern "C" { #define FFMPEG_VERSION_INT 0x000409 #define FFMPEG_VERSION "0.4.9-pre1" -#define LIBAVCODEC_BUILD 4734 +#define LIBAVCODEC_BUILD 4735 #define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT #define LIBAVCODEC_VERSION FFMPEG_VERSION @@ -1683,12 +1683,26 @@ typedef struct AVCodecContext { int lowres; /** - * bistream width / height. may be different from width/height if lowres + * bitsream width / height. may be different from width/height if lowres * or other things are used * - encoding: unused * - decoding: set by user before init if known, codec should override / dynamically change if needed */ int coded_width, coded_height; + + /** + * frame skip threshold + * - encoding: set by user + * - decoding: unused + */ + int frame_skip_threshold; + + /** + * frame skip factor + * - encoding: set by user + * - decoding: unused + */ + int frame_skip_factor; } AVCodecContext; |