Mercurial > libavcodec.hg
diff avcodec.h @ 2256:7e0b2e86afa9 libavcodec
1/2 resolution decoding
author | michael |
---|---|
date | Sat, 25 Sep 2004 23:18:58 +0000 |
parents | 8f605c66d1d4 |
children | 5f64a30339e5 |
line wrap: on
line diff
--- a/avcodec.h Sat Sep 25 10:06:31 2004 +0000 +++ b/avcodec.h Sat Sep 25 23:18:58 2004 +0000 @@ -17,7 +17,7 @@ #define FFMPEG_VERSION_INT 0x000409 #define FFMPEG_VERSION "0.4.9-pre1" -#define LIBAVCODEC_BUILD 4721 +#define LIBAVCODEC_BUILD 4722 #define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT #define LIBAVCODEC_VERSION FFMPEG_VERSION @@ -1111,6 +1111,7 @@ #define FF_IDCT_ALTIVEC 8 #define FF_IDCT_SH4 9 #define FF_IDCT_SIMPLEARM 10 +#define FF_IDCT_INT4 11 /** * slice count. @@ -1656,6 +1657,13 @@ */ int level; #define FF_LEVEL_UNKNOWN -99 + + /** + * low resolution decoding. 1-> 1/2 size, 2->1/4 size + * - encoding: unused + * - decoding: set by user + */ + int lowres; } AVCodecContext;