asfdec: also read Metadata Library Object
[FFMpeg-mirror/mplayer-patches.git] / libavcodec / sunrast.h
blobd9fe307b6732624acc283be3d049b2c091d274ca
1 /*
2 * Sun Rasterfile Image Format
3 * Copyright (c) 2007, 2008 Ivo van Poorten
5 * This file is part of Libav.
7 * Libav is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * Libav is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with Libav; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 #ifndef AVCODEC_SUNRAST_H
23 #define AVCODEC_SUNRAST_H
25 #define RAS_MAGIC 0x59a66a95
27 #define RMT_NONE 0
28 #define RMT_EQUAL_RGB 1
29 #define RMT_RAW 2 ///< the data layout of this map type is unknown
31 /* The Old and Standard format types indicate that the image data is
32 * uncompressed. There is no difference between the two formats. */
33 #define RT_OLD 0
34 #define RT_STANDARD 1
36 /* The Byte-Encoded format type indicates that the image data is compressed
37 * using a run-length encoding scheme. */
38 #define RT_BYTE_ENCODED 2
39 #define RLE_TRIGGER 0x80
41 /* The RGB format type indicates that the image is uncompressed with reverse
42 * component order from Old and Standard (RGB vs BGR). */
43 #define RT_FORMAT_RGB 3
45 /* The TIFF and IFF format types indicate that the raster file was originally
46 * converted from either of these file formats. We do not have any samples or
47 * documentation of the format details. */
48 #define RT_FORMAT_TIFF 4
49 #define RT_FORMAT_IFF 5
51 /* The Experimental format type is implementation-specific and is generally an
52 * indication that the image file does not conform to the Sun Raster file
53 * format specification. */
54 #define RT_EXPERIMENTAL 0xffff
56 #endif /* AVCODEC_SUNRAST_H */