Mercurial > libavcodec.hg
comparison avcodec.h @ 951:ad264a7d4f94 libavcodec
motion estimation pre pass
| author | michaelni |
|---|---|
| date | Thu, 02 Jan 2003 01:29:35 +0000 |
| parents | 371bc36a9c5c |
| children | 9eb066d6e0db |
comparison
equal
deleted
inserted
replaced
| 950:d4d714493faa | 951:ad264a7d4f94 |
|---|---|
| 3 | 3 |
| 4 #include "common.h" | 4 #include "common.h" |
| 5 | 5 |
| 6 #define LIBAVCODEC_VERSION_INT 0x000406 | 6 #define LIBAVCODEC_VERSION_INT 0x000406 |
| 7 #define LIBAVCODEC_VERSION "0.4.6" | 7 #define LIBAVCODEC_VERSION "0.4.6" |
| 8 #define LIBAVCODEC_BUILD 4649 | 8 #define LIBAVCODEC_BUILD 4650 |
| 9 #define LIBAVCODEC_BUILD_STR "4649" | 9 #define LIBAVCODEC_BUILD_STR "4650" |
| 10 | 10 |
| 11 enum CodecID { | 11 enum CodecID { |
| 12 CODEC_ID_NONE, | 12 CODEC_ID_NONE, |
| 13 CODEC_ID_MPEG1VIDEO, | 13 CODEC_ID_MPEG1VIDEO, |
| 14 CODEC_ID_H263, | 14 CODEC_ID_H263, |
| 892 * amount of previous MV predictors (2a+1 x 2a+1 square) | 892 * amount of previous MV predictors (2a+1 x 2a+1 square) |
| 893 * encoding: set by user. | 893 * encoding: set by user. |
| 894 * decoding: unused | 894 * decoding: unused |
| 895 */ | 895 */ |
| 896 int last_predictor_count; | 896 int last_predictor_count; |
| 897 | |
| 898 /** | |
| 899 * pre pass for motion estimation | |
| 900 * encoding: set by user. | |
| 901 * decoding: unused | |
| 902 */ | |
| 903 int pre_me; | |
| 897 | 904 |
| 898 } AVCodecContext; | 905 } AVCodecContext; |
| 899 | 906 |
| 900 typedef struct AVCodec { | 907 typedef struct AVCodec { |
| 901 const char *name; | 908 const char *name; |
