00001 /* 00002 * XWD image format 00003 * 00004 * Copyright (c) 2012 Paul B Mahol 00005 * 00006 * This file is part of Libav. 00007 * 00008 * Libav is free software; you can redistribute it and/or 00009 * modify it under the terms of the GNU Lesser General Public 00010 * License as published by the Free Software Foundation; either 00011 * version 2.1 of the License, or (at your option) any later version. 00012 * 00013 * Libav is distributed in the hope that it will be useful, 00014 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00016 * Lesser General Public License for more details. 00017 * 00018 * You should have received a copy of the GNU Lesser General Public 00019 * License along with Libav; if not, write to the Free Software 00020 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 00021 */ 00022 00023 #ifndef AVCODEC_XWD_H 00024 #define AVCODEC_XWD_H 00025 00026 #define XWD_VERSION 7 00027 #define XWD_HEADER_SIZE 100 00028 #define XWD_CMAP_SIZE 12 00029 00030 #define XWD_XY_BITMAP 0 00031 #define XWD_XY_PIXMAP 1 00032 #define XWD_Z_PIXMAP 2 00033 00034 #define XWD_STATIC_GRAY 0 00035 #define XWD_GRAY_SCALE 1 00036 #define XWD_STATIC_COLOR 2 00037 #define XWD_PSEUDO_COLOR 3 00038 #define XWD_TRUE_COLOR 4 00039 #define XWD_DIRECT_COLOR 5 00040 00041 #endif /* AVCODEC_XWD_H */