Mercurial > libavcodec.hg
comparison avcodec.h @ 2256:7e0b2e86afa9 libavcodec
1/2 resolution decoding
| author | michael |
|---|---|
| date | Sat, 25 Sep 2004 23:18:58 +0000 |
| parents | 8f605c66d1d4 |
| children | 5f64a30339e5 |
comparison
equal
deleted
inserted
replaced
| 2255:507690ff49a2 | 2256:7e0b2e86afa9 |
|---|---|
| 15 #include "rational.h" | 15 #include "rational.h" |
| 16 #include <sys/types.h> /* size_t */ | 16 #include <sys/types.h> /* size_t */ |
| 17 | 17 |
| 18 #define FFMPEG_VERSION_INT 0x000409 | 18 #define FFMPEG_VERSION_INT 0x000409 |
| 19 #define FFMPEG_VERSION "0.4.9-pre1" | 19 #define FFMPEG_VERSION "0.4.9-pre1" |
| 20 #define LIBAVCODEC_BUILD 4721 | 20 #define LIBAVCODEC_BUILD 4722 |
| 21 | 21 |
| 22 #define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT | 22 #define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT |
| 23 #define LIBAVCODEC_VERSION FFMPEG_VERSION | 23 #define LIBAVCODEC_VERSION FFMPEG_VERSION |
| 24 | 24 |
| 25 #define AV_STRINGIFY(s) AV_TOSTRING(s) | 25 #define AV_STRINGIFY(s) AV_TOSTRING(s) |
| 1109 #define FF_IDCT_MLIB 6 | 1109 #define FF_IDCT_MLIB 6 |
| 1110 #define FF_IDCT_ARM 7 | 1110 #define FF_IDCT_ARM 7 |
| 1111 #define FF_IDCT_ALTIVEC 8 | 1111 #define FF_IDCT_ALTIVEC 8 |
| 1112 #define FF_IDCT_SH4 9 | 1112 #define FF_IDCT_SH4 9 |
| 1113 #define FF_IDCT_SIMPLEARM 10 | 1113 #define FF_IDCT_SIMPLEARM 10 |
| 1114 #define FF_IDCT_INT4 11 | |
| 1114 | 1115 |
| 1115 /** | 1116 /** |
| 1116 * slice count. | 1117 * slice count. |
| 1117 * - encoding: set by lavc | 1118 * - encoding: set by lavc |
| 1118 * - decoding: set by user (or 0) | 1119 * - decoding: set by user (or 0) |
| 1654 * - encoding: set by user | 1655 * - encoding: set by user |
| 1655 * - decoding: set by lavc | 1656 * - decoding: set by lavc |
| 1656 */ | 1657 */ |
| 1657 int level; | 1658 int level; |
| 1658 #define FF_LEVEL_UNKNOWN -99 | 1659 #define FF_LEVEL_UNKNOWN -99 |
| 1660 | |
| 1661 /** | |
| 1662 * low resolution decoding. 1-> 1/2 size, 2->1/4 size | |
| 1663 * - encoding: unused | |
| 1664 * - decoding: set by user | |
| 1665 */ | |
| 1666 int lowres; | |
| 1659 } AVCodecContext; | 1667 } AVCodecContext; |
| 1660 | 1668 |
| 1661 | 1669 |
| 1662 /** | 1670 /** |
| 1663 * AVOption. | 1671 * AVOption. |
