Mercurial > libavcodec.hg
comparison avcodec.h @ 713:e74a563eb643 libavcodec
rv10 cleanup (de)muxer still needs to be cleaned up (still searching volunteer for that ;) )
| author | michaelni |
|---|---|
| date | Tue, 01 Oct 2002 19:29:10 +0000 |
| parents | e65798d228ea |
| children | caa4c757a47d |
comparison
equal
deleted
inserted
replaced
| 712:e55b91623e09 | 713:e74a563eb643 |
|---|---|
| 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 4629 | 8 #define LIBAVCODEC_BUILD 4630 |
| 9 #define LIBAVCODEC_BUILD_STR "4629" | 9 #define LIBAVCODEC_BUILD_STR "4630" |
| 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, |
| 696 #define FF_IDCT_SIMPLEMMX 3 | 696 #define FF_IDCT_SIMPLEMMX 3 |
| 697 #define FF_IDCT_LIBMPEG2MMX 4 | 697 #define FF_IDCT_LIBMPEG2MMX 4 |
| 698 #define FF_IDCT_PS2 5 | 698 #define FF_IDCT_PS2 5 |
| 699 #define FF_IDCT_MLIB 6 | 699 #define FF_IDCT_MLIB 6 |
| 700 #define FF_IDCT_ARM 7 | 700 #define FF_IDCT_ARM 7 |
| 701 | |
| 702 /** | |
| 703 * slice count | |
| 704 * encoding: set by lavc | |
| 705 * decoding: set by user (or 0) | |
| 706 */ | |
| 707 int slice_count; | |
| 708 /** | |
| 709 * slice offsets in the frame in bytes | |
| 710 * encoding: set/allocated by lavc | |
| 711 * decoding: set/allocated by user (or NULL) | |
| 712 */ | |
| 713 int *slice_offset; | |
| 701 | 714 |
| 702 //FIXME this should be reordered after kabis API is finished ... | 715 //FIXME this should be reordered after kabis API is finished ... |
| 703 //TODO kill kabi | 716 //TODO kill kabi |
| 704 /* | 717 /* |
| 705 Note: Below are located reserved fields for further usage | 718 Note: Below are located reserved fields for further usage |
