annotate avutil.h @ 200:5f59ab1a1258 libavutil

simplify
author michael
date Sun, 14 Jan 2007 21:40:21 +0000
parents f84ea89de398
children 9845a508ffbd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
108
11be8e0d1344 Add official LGPL license headers to the files that were missing them.
diego
parents: 103
diff changeset
1 /*
11be8e0d1344 Add official LGPL license headers to the files that were missing them.
diego
parents: 103
diff changeset
2 * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
11be8e0d1344 Add official LGPL license headers to the files that were missing them.
diego
parents: 103
diff changeset
3 *
116
d76a36742464 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 113
diff changeset
4 * This file is part of FFmpeg.
d76a36742464 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 113
diff changeset
5 *
d76a36742464 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 113
diff changeset
6 * FFmpeg is free software; you can redistribute it and/or
108
11be8e0d1344 Add official LGPL license headers to the files that were missing them.
diego
parents: 103
diff changeset
7 * modify it under the terms of the GNU Lesser General Public
11be8e0d1344 Add official LGPL license headers to the files that were missing them.
diego
parents: 103
diff changeset
8 * License as published by the Free Software Foundation; either
116
d76a36742464 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 113
diff changeset
9 * version 2.1 of the License, or (at your option) any later version.
108
11be8e0d1344 Add official LGPL license headers to the files that were missing them.
diego
parents: 103
diff changeset
10 *
116
d76a36742464 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 113
diff changeset
11 * FFmpeg is distributed in the hope that it will be useful,
108
11be8e0d1344 Add official LGPL license headers to the files that were missing them.
diego
parents: 103
diff changeset
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11be8e0d1344 Add official LGPL license headers to the files that were missing them.
diego
parents: 103
diff changeset
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11be8e0d1344 Add official LGPL license headers to the files that were missing them.
diego
parents: 103
diff changeset
14 * Lesser General Public License for more details.
11be8e0d1344 Add official LGPL license headers to the files that were missing them.
diego
parents: 103
diff changeset
15 *
11be8e0d1344 Add official LGPL license headers to the files that were missing them.
diego
parents: 103
diff changeset
16 * You should have received a copy of the GNU Lesser General Public
116
d76a36742464 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 113
diff changeset
17 * License along with FFmpeg; if not, write to the Free Software
108
11be8e0d1344 Add official LGPL license headers to the files that were missing them.
diego
parents: 103
diff changeset
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
11be8e0d1344 Add official LGPL license headers to the files that were missing them.
diego
parents: 103
diff changeset
19 */
11be8e0d1344 Add official LGPL license headers to the files that were missing them.
diego
parents: 103
diff changeset
20
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
21 #ifndef AVUTIL_H
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
22 #define AVUTIL_H
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
23
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
24 /**
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
25 * @file avutil.h
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
26 * external api header.
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
27 */
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
28
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
29
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
30 #ifdef __cplusplus
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
31 extern "C" {
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
32 #endif
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
33
13
aedb6bd881b9 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 0
diff changeset
34 #define AV_STRINGIFY(s) AV_TOSTRING(s)
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
35 #define AV_TOSTRING(s) #s
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
36
145
f84ea89de398 Remove alpha channel from RGB555
alex
parents: 122
diff changeset
37 #define LIBAVUTIL_VERSION_INT ((49<<16)+(1<<8)+0)
f84ea89de398 Remove alpha channel from RGB555
alex
parents: 122
diff changeset
38 #define LIBAVUTIL_VERSION 49.1.0
13
aedb6bd881b9 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 0
diff changeset
39 #define LIBAVUTIL_BUILD LIBAVUTIL_VERSION_INT
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
40
13
aedb6bd881b9 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 0
diff changeset
41 #define LIBAVUTIL_IDENT "Lavu" AV_STRINGIFY(LIBAVUTIL_VERSION)
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
42
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
43
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
44 #include "common.h"
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
45 #include "mathematics.h"
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
46 #include "rational.h"
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
47 #include "integer.h"
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
48 #include "intfloat_readwrite.h"
81
5cfa773a3bdd Move av_log() & friends to libavutil
lucabe
parents: 32
diff changeset
49 #include "log.h"
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
50
32
b6594d61c8b2 move enum PixelFormat from libavcodec to libavutil
lucabe
parents: 13
diff changeset
51 /**
b6594d61c8b2 move enum PixelFormat from libavcodec to libavutil
lucabe
parents: 13
diff changeset
52 * Pixel format. Notes:
b6594d61c8b2 move enum PixelFormat from libavcodec to libavutil
lucabe
parents: 13
diff changeset
53 *
101
dc973a8c90fd cleanup PixelFormat a little
michael
parents: 81
diff changeset
54 * PIX_FMT_RGB32 is handled in an endian-specific manner. A RGBA
32
b6594d61c8b2 move enum PixelFormat from libavcodec to libavutil
lucabe
parents: 13
diff changeset
55 * color is put together as:
b6594d61c8b2 move enum PixelFormat from libavcodec to libavutil
lucabe
parents: 13
diff changeset
56 * (A << 24) | (R << 16) | (G << 8) | B
b6594d61c8b2 move enum PixelFormat from libavcodec to libavutil
lucabe
parents: 13
diff changeset
57 * This is stored as BGRA on little endian CPU architectures and ARGB on
b6594d61c8b2 move enum PixelFormat from libavcodec to libavutil
lucabe
parents: 13
diff changeset
58 * big endian CPUs.
b6594d61c8b2 move enum PixelFormat from libavcodec to libavutil
lucabe
parents: 13
diff changeset
59 *
b6594d61c8b2 move enum PixelFormat from libavcodec to libavutil
lucabe
parents: 13
diff changeset
60 * When the pixel format is palettized RGB (PIX_FMT_PAL8), the palettized
b6594d61c8b2 move enum PixelFormat from libavcodec to libavutil
lucabe
parents: 13
diff changeset
61 * image data is stored in AVFrame.data[0]. The palette is transported in
b6594d61c8b2 move enum PixelFormat from libavcodec to libavutil
lucabe
parents: 13
diff changeset
62 * AVFrame.data[1] and, is 1024 bytes long (256 4-byte entries) and is
101
dc973a8c90fd cleanup PixelFormat a little
michael
parents: 81
diff changeset
63 * formatted the same as in PIX_FMT_RGB32 described above (i.e., it is
32
b6594d61c8b2 move enum PixelFormat from libavcodec to libavutil
lucabe
parents: 13
diff changeset
64 * also endian-specific). Note also that the individual RGB palette
b6594d61c8b2 move enum PixelFormat from libavcodec to libavutil
lucabe
parents: 13
diff changeset
65 * components stored in AVFrame.data[1] should be in the range 0..255.
b6594d61c8b2 move enum PixelFormat from libavcodec to libavutil
lucabe
parents: 13
diff changeset
66 * This is important as many custom PAL8 video codecs that were designed
b6594d61c8b2 move enum PixelFormat from libavcodec to libavutil
lucabe
parents: 13
diff changeset
67 * to run on the IBM VGA graphics adapter use 6-bit palette components.
b6594d61c8b2 move enum PixelFormat from libavcodec to libavutil
lucabe
parents: 13
diff changeset
68 */
b6594d61c8b2 move enum PixelFormat from libavcodec to libavutil
lucabe
parents: 13
diff changeset
69 enum PixelFormat {
b6594d61c8b2 move enum PixelFormat from libavcodec to libavutil
lucabe
parents: 13
diff changeset
70 PIX_FMT_NONE= -1,
101
dc973a8c90fd cleanup PixelFormat a little
michael
parents: 81
diff changeset
71 PIX_FMT_YUV420P, ///< Planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
dc973a8c90fd cleanup PixelFormat a little
michael
parents: 81
diff changeset
72 PIX_FMT_YUYV422, ///< Packed YUV 4:2:2, 16bpp, Y0 Cb Y1 Cr
dc973a8c90fd cleanup PixelFormat a little
michael
parents: 81
diff changeset
73 PIX_FMT_RGB24, ///< Packed RGB 8:8:8, 24bpp, RGBRGB...
dc973a8c90fd cleanup PixelFormat a little
michael
parents: 81
diff changeset
74 PIX_FMT_BGR24, ///< Packed RGB 8:8:8, 24bpp, BGRBGR...
dc973a8c90fd cleanup PixelFormat a little
michael
parents: 81
diff changeset
75 PIX_FMT_YUV422P, ///< Planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
dc973a8c90fd cleanup PixelFormat a little
michael
parents: 81
diff changeset
76 PIX_FMT_YUV444P, ///< Planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
dc973a8c90fd cleanup PixelFormat a little
michael
parents: 81
diff changeset
77 PIX_FMT_RGB32, ///< Packed RGB 8:8:8, 32bpp, (msb)8A 8R 8G 8B(lsb), in cpu endianness
dc973a8c90fd cleanup PixelFormat a little
michael
parents: 81
diff changeset
78 PIX_FMT_YUV410P, ///< Planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
dc973a8c90fd cleanup PixelFormat a little
michael
parents: 81
diff changeset
79 PIX_FMT_YUV411P, ///< Planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
dc973a8c90fd cleanup PixelFormat a little
michael
parents: 81
diff changeset
80 PIX_FMT_RGB565, ///< Packed RGB 5:6:5, 16bpp, (msb) 5R 6G 5B(lsb), in cpu endianness
145
f84ea89de398 Remove alpha channel from RGB555
alex
parents: 122
diff changeset
81 PIX_FMT_RGB555, ///< Packed RGB 5:5:5, 16bpp, (msb)1A 5R 5G 5B(lsb), in cpu endianness most significant bit to 0
101
dc973a8c90fd cleanup PixelFormat a little
michael
parents: 81
diff changeset
82 PIX_FMT_GRAY8, ///< Y , 8bpp
dc973a8c90fd cleanup PixelFormat a little
michael
parents: 81
diff changeset
83 PIX_FMT_MONOWHITE, ///< Y , 1bpp, 1 is white
dc973a8c90fd cleanup PixelFormat a little
michael
parents: 81
diff changeset
84 PIX_FMT_MONOBLACK, ///< Y , 1bpp, 0 is black
dc973a8c90fd cleanup PixelFormat a little
michael
parents: 81
diff changeset
85 PIX_FMT_PAL8, ///< 8 bit with PIX_FMT_RGB32 palette
dc973a8c90fd cleanup PixelFormat a little
michael
parents: 81
diff changeset
86 PIX_FMT_YUVJ420P, ///< Planar YUV 4:2:0, 12bpp, full scale (jpeg)
dc973a8c90fd cleanup PixelFormat a little
michael
parents: 81
diff changeset
87 PIX_FMT_YUVJ422P, ///< Planar YUV 4:2:2, 16bpp, full scale (jpeg)
dc973a8c90fd cleanup PixelFormat a little
michael
parents: 81
diff changeset
88 PIX_FMT_YUVJ444P, ///< Planar YUV 4:4:4, 24bpp, full scale (jpeg)
32
b6594d61c8b2 move enum PixelFormat from libavcodec to libavutil
lucabe
parents: 13
diff changeset
89 PIX_FMT_XVMC_MPEG2_MC,///< XVideo Motion Acceleration via common packet passing(xvmc_render.h)
b6594d61c8b2 move enum PixelFormat from libavcodec to libavutil
lucabe
parents: 13
diff changeset
90 PIX_FMT_XVMC_MPEG2_IDCT,
101
dc973a8c90fd cleanup PixelFormat a little
michael
parents: 81
diff changeset
91 PIX_FMT_UYVY422, ///< Packed YUV 4:2:2, 16bpp, Cb Y0 Cr Y1
dc973a8c90fd cleanup PixelFormat a little
michael
parents: 81
diff changeset
92 PIX_FMT_UYYVYY411, ///< Packed YUV 4:1:1, 12bpp, Cb Y0 Y1 Cr Y2 Y3
103
6239181c9187 Add some new pixel formats to libavutil
lucabe
parents: 102
diff changeset
93 PIX_FMT_BGR32, ///< Packed RGB 8:8:8, 32bpp, (msb)8A 8B 8G 8R(lsb), in cpu endianness
6239181c9187 Add some new pixel formats to libavutil
lucabe
parents: 102
diff changeset
94 PIX_FMT_BGR565, ///< Packed RGB 5:6:5, 16bpp, (msb) 5B 6G 5R(lsb), in cpu endianness
6239181c9187 Add some new pixel formats to libavutil
lucabe
parents: 102
diff changeset
95 PIX_FMT_BGR555, ///< Packed RGB 5:5:5, 16bpp, (msb)1A 5B 5G 5R(lsb), in cpu endianness most significant bit to 1
6239181c9187 Add some new pixel formats to libavutil
lucabe
parents: 102
diff changeset
96 PIX_FMT_BGR8, ///< Packed RGB 3:3:2, 8bpp, (msb)2B 3G 3R(lsb)
6239181c9187 Add some new pixel formats to libavutil
lucabe
parents: 102
diff changeset
97 PIX_FMT_BGR4, ///< Packed RGB 1:2:1, 4bpp, (msb)1B 2G 1R(lsb)
6239181c9187 Add some new pixel formats to libavutil
lucabe
parents: 102
diff changeset
98 PIX_FMT_BGR4_BYTE, ///< Packed RGB 1:2:1, 8bpp, (msb)1B 2G 1R(lsb)
6239181c9187 Add some new pixel formats to libavutil
lucabe
parents: 102
diff changeset
99 PIX_FMT_RGB8, ///< Packed RGB 3:3:2, 8bpp, (msb)2R 3G 3B(lsb)
6239181c9187 Add some new pixel formats to libavutil
lucabe
parents: 102
diff changeset
100 PIX_FMT_RGB4, ///< Packed RGB 1:2:1, 4bpp, (msb)2R 3G 3B(lsb)
6239181c9187 Add some new pixel formats to libavutil
lucabe
parents: 102
diff changeset
101 PIX_FMT_RGB4_BYTE, ///< Packed RGB 1:2:1, 8bpp, (msb)2R 3G 3B(lsb)
6239181c9187 Add some new pixel formats to libavutil
lucabe
parents: 102
diff changeset
102 PIX_FMT_NV12, ///< Planar YUV 4:2:0, 12bpp, 1 plane for Y and 1 for UV
6239181c9187 Add some new pixel formats to libavutil
lucabe
parents: 102
diff changeset
103 PIX_FMT_NV21, ///< as above, but U and V bytes are swapped
6239181c9187 Add some new pixel formats to libavutil
lucabe
parents: 102
diff changeset
104
6239181c9187 Add some new pixel formats to libavutil
lucabe
parents: 102
diff changeset
105 PIX_FMT_RGB32_1, ///< Packed RGB 8:8:8, 32bpp, (msb)8R 8G 8B 8A(lsb), in cpu endianness
6239181c9187 Add some new pixel formats to libavutil
lucabe
parents: 102
diff changeset
106 PIX_FMT_BGR32_1, ///< Packed RGB 8:8:8, 32bpp, (msb)8B 8G 8R 8A(lsb), in cpu endianness
6239181c9187 Add some new pixel formats to libavutil
lucabe
parents: 102
diff changeset
107
122
82d8cdd0191c 16-bit grayscale support
kostya
parents: 116
diff changeset
108 PIX_FMT_GRAY16BE, ///< Y , 16bpp, big-endian
82d8cdd0191c 16-bit grayscale support
kostya
parents: 116
diff changeset
109 PIX_FMT_GRAY16LE, ///< Y , 16bpp, little-endian
102
262c44b493f9 compatibility warning
michael
parents: 101
diff changeset
110 PIX_FMT_NB, ///< number of pixel formats, DO NOT USE THIS if you want to link with shared libav* because the number of formats might differ between versions
32
b6594d61c8b2 move enum PixelFormat from libavcodec to libavutil
lucabe
parents: 13
diff changeset
111 };
b6594d61c8b2 move enum PixelFormat from libavcodec to libavutil
lucabe
parents: 13
diff changeset
112
101
dc973a8c90fd cleanup PixelFormat a little
michael
parents: 81
diff changeset
113 #ifdef WORDS_BIGENDIAN
103
6239181c9187 Add some new pixel formats to libavutil
lucabe
parents: 102
diff changeset
114 #define PIX_FMT_RGBA PIX_FMT_RGB32_1
6239181c9187 Add some new pixel formats to libavutil
lucabe
parents: 102
diff changeset
115 #define PIX_FMT_BGRA PIX_FMT_BGR32_1
101
dc973a8c90fd cleanup PixelFormat a little
michael
parents: 81
diff changeset
116 #define PIX_FMT_ARGB PIX_FMT_RGB32
103
6239181c9187 Add some new pixel formats to libavutil
lucabe
parents: 102
diff changeset
117 #define PIX_FMT_ABGR PIX_FMT_BGR32
122
82d8cdd0191c 16-bit grayscale support
kostya
parents: 116
diff changeset
118 #define PIX_FMT_GRAY16 PIX_FMT_GRAY16BE
101
dc973a8c90fd cleanup PixelFormat a little
michael
parents: 81
diff changeset
119 #else
103
6239181c9187 Add some new pixel formats to libavutil
lucabe
parents: 102
diff changeset
120 #define PIX_FMT_RGBA PIX_FMT_BGR32
101
dc973a8c90fd cleanup PixelFormat a little
michael
parents: 81
diff changeset
121 #define PIX_FMT_BGRA PIX_FMT_RGB32
103
6239181c9187 Add some new pixel formats to libavutil
lucabe
parents: 102
diff changeset
122 #define PIX_FMT_ARGB PIX_FMT_BGR32_1
6239181c9187 Add some new pixel formats to libavutil
lucabe
parents: 102
diff changeset
123 #define PIX_FMT_ABGR PIX_FMT_RGB32_1
122
82d8cdd0191c 16-bit grayscale support
kostya
parents: 116
diff changeset
124 #define PIX_FMT_GRAY16 PIX_FMT_GRAY16LE
101
dc973a8c90fd cleanup PixelFormat a little
michael
parents: 81
diff changeset
125 #endif
dc973a8c90fd cleanup PixelFormat a little
michael
parents: 81
diff changeset
126
dc973a8c90fd cleanup PixelFormat a little
michael
parents: 81
diff changeset
127 #if LIBAVUTIL_VERSION_INT < (50<<16)
dc973a8c90fd cleanup PixelFormat a little
michael
parents: 81
diff changeset
128 #define PIX_FMT_UYVY411 PIX_FMT_UYYVYY411
dc973a8c90fd cleanup PixelFormat a little
michael
parents: 81
diff changeset
129 #define PIX_FMT_RGBA32 PIX_FMT_RGB32
dc973a8c90fd cleanup PixelFormat a little
michael
parents: 81
diff changeset
130 #define PIX_FMT_YUV422 PIX_FMT_YUYV422
dc973a8c90fd cleanup PixelFormat a little
michael
parents: 81
diff changeset
131 #endif
dc973a8c90fd cleanup PixelFormat a little
michael
parents: 81
diff changeset
132
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
133 #ifdef __cplusplus
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
134 }
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
135 #endif
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
136
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
137 #endif /* AVUTIL_H */