00001 /* 00002 * LCL (LossLess Codec Library) Codec 00003 * Copyright (c) 2002-2004 Roberto Togni 00004 * 00005 * This file is part of FFmpeg. 00006 * 00007 * FFmpeg is free software; you can redistribute it and/or 00008 * modify it under the terms of the GNU Lesser General Public 00009 * License as published by the Free Software Foundation; either 00010 * version 2.1 of the License, or (at your option) any later version. 00011 * 00012 * FFmpeg is distributed in the hope that it will be useful, 00013 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00015 * Lesser General Public License for more details. 00016 * 00017 * You should have received a copy of the GNU Lesser General Public 00018 * License along with FFmpeg; if not, write to the Free Software 00019 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 00020 */ 00021 00022 #ifndef AVCODEC_LCL_H 00023 #define AVCODEC_LCL_H 00024 00025 #define BMPTYPE_YUV 1 00026 #define BMPTYPE_RGB 2 00027 00028 #define IMGTYPE_YUV111 0 00029 #define IMGTYPE_YUV422 1 00030 #define IMGTYPE_RGB24 2 00031 #define IMGTYPE_YUV411 3 00032 #define IMGTYPE_YUV211 4 00033 #define IMGTYPE_YUV420 5 00034 00035 #define COMP_MSZH 0 00036 #define COMP_MSZH_NOCOMP 1 00037 #define COMP_ZLIB_HISPEED 1 00038 #define COMP_ZLIB_HICOMP 9 00039 #define COMP_ZLIB_NORMAL -1 00040 00041 #define FLAG_MULTITHREAD 1 00042 #define FLAG_NULLFRAME 2 00043 #define FLAG_PNGFILTER 4 00044 #define FLAGMASK_UNUSED 0xf8 00045 00046 #define CODEC_MSZH 1 00047 #define CODEC_ZLIB 3 00048 00049 #endif /* AVCODEC_LCL_H */