12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #ifndef AVCODEC_LCL_H
- #define AVCODEC_LCL_H
- #define BMPTYPE_YUV 1
- #define BMPTYPE_RGB 2
- #define IMGTYPE_YUV111 0
- #define IMGTYPE_YUV422 1
- #define IMGTYPE_RGB24 2
- #define IMGTYPE_YUV411 3
- #define IMGTYPE_YUV211 4
- #define IMGTYPE_YUV420 5
- #define COMP_MSZH 0
- #define COMP_MSZH_NOCOMP 1
- #define COMP_ZLIB_HISPEED 1
- #define COMP_ZLIB_HICOMP 9
- #define COMP_ZLIB_NORMAL -1
- #define FLAG_MULTITHREAD 1
- #define FLAG_NULLFRAME 2
- #define FLAG_PNGFILTER 4
- #define FLAGMASK_UNUSED 0xf8
- #define CODEC_MSZH 1
- #define CODEC_ZLIB 3
- #endif
|