annotate avutil.h @ 784:fd7a78f003e7 libavutil

Move ff_reverse in libavcodec to av_reverse in libavutil. Patch by Francesco Lavra, francescolavra interfree it
author cehoyos
date Mon, 09 Nov 2009 09:11:35 +0000
parents 2f890bb12bbc
children 57659b3ef05c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
267
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
1 /*
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
2 * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
3 *
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
4 * This file is part of FFmpeg.
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
5 *
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
6 * FFmpeg is free software; you can redistribute it and/or
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
7 * modify it under the terms of the GNU Lesser General Public
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
8 * License as published by the Free Software Foundation; either
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
9 * version 2.1 of the License, or (at your option) any later version.
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
10 *
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
11 * FFmpeg is distributed in the hope that it will be useful,
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
14 * Lesser General Public License for more details.
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
15 *
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
16 * You should have received a copy of the GNU Lesser General Public
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
17 * License along with FFmpeg; if not, write to the Free Software
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
19 */
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
20
567
bd4052d9050c Globally rename the header inclusion guard names.
stefano
parents: 564
diff changeset
21 #ifndef AVUTIL_AVUTIL_H
bd4052d9050c Globally rename the header inclusion guard names.
stefano
parents: 564
diff changeset
22 #define AVUTIL_AVUTIL_H
267
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
23
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
24 /**
642
70bdd5501662 Use full internal pathname in doxygen @file directives.
diego
parents: 636
diff changeset
25 * @file libavutil/avutil.h
466
f4fd038fcb58 misc spelling fixes
diego
parents: 459
diff changeset
26 * external API header
267
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
27 */
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
28
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
29
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
30 #define AV_STRINGIFY(s) AV_TOSTRING(s)
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
31 #define AV_TOSTRING(s) #s
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
32
459
3a8b439cb980 less preprocessor magic in version number macros
mru
parents: 453
diff changeset
33 #define AV_VERSION_INT(a, b, c) (a<<16 | b<<8 | c)
3a8b439cb980 less preprocessor magic in version number macros
mru
parents: 453
diff changeset
34 #define AV_VERSION_DOT(a, b, c) a ##.## b ##.## c
3a8b439cb980 less preprocessor magic in version number macros
mru
parents: 453
diff changeset
35 #define AV_VERSION(a, b, c) AV_VERSION_DOT(a, b, c)
453
5aec7a3442b1 Clean up lib* version definitions
mru
parents: 439
diff changeset
36
681
588652a81abe Bump major version of libavutil due to FIFO fixes.
michael
parents: 671
diff changeset
37 #define LIBAVUTIL_VERSION_MAJOR 50
784
fd7a78f003e7 Move ff_reverse in libavcodec to av_reverse in libavutil.
cehoyos
parents: 722
diff changeset
38 #define LIBAVUTIL_VERSION_MINOR 4
459
3a8b439cb980 less preprocessor magic in version number macros
mru
parents: 453
diff changeset
39 #define LIBAVUTIL_VERSION_MICRO 0
453
5aec7a3442b1 Clean up lib* version definitions
mru
parents: 439
diff changeset
40
459
3a8b439cb980 less preprocessor magic in version number macros
mru
parents: 453
diff changeset
41 #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
3a8b439cb980 less preprocessor magic in version number macros
mru
parents: 453
diff changeset
42 LIBAVUTIL_VERSION_MINOR, \
3a8b439cb980 less preprocessor magic in version number macros
mru
parents: 453
diff changeset
43 LIBAVUTIL_VERSION_MICRO)
3a8b439cb980 less preprocessor magic in version number macros
mru
parents: 453
diff changeset
44 #define LIBAVUTIL_VERSION AV_VERSION(LIBAVUTIL_VERSION_MAJOR, \
3a8b439cb980 less preprocessor magic in version number macros
mru
parents: 453
diff changeset
45 LIBAVUTIL_VERSION_MINOR, \
3a8b439cb980 less preprocessor magic in version number macros
mru
parents: 453
diff changeset
46 LIBAVUTIL_VERSION_MICRO)
267
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
47 #define LIBAVUTIL_BUILD LIBAVUTIL_VERSION_INT
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
48
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
49 #define LIBAVUTIL_IDENT "Lavu" AV_STRINGIFY(LIBAVUTIL_VERSION)
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
50
545
fc868fc6439c Implement avutil_version().
stefano
parents: 513
diff changeset
51 /**
fc868fc6439c Implement avutil_version().
stefano
parents: 513
diff changeset
52 * Returns the LIBAVUTIL_VERSION_INT constant.
fc868fc6439c Implement avutil_version().
stefano
parents: 513
diff changeset
53 */
fc868fc6439c Implement avutil_version().
stefano
parents: 513
diff changeset
54 unsigned avutil_version(void);
267
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
55
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
56 #include "common.h"
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
57 #include "mathematics.h"
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
58 #include "rational.h"
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
59 #include "intfloat_readwrite.h"
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
60 #include "log.h"
671
e847c4a1d29a Split avutil.h, move all the pixel format definitions to the new
stefano
parents: 670
diff changeset
61 #include "pixfmt.h"
267
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
62
567
bd4052d9050c Globally rename the header inclusion guard names.
stefano
parents: 564
diff changeset
63 #endif /* AVUTIL_AVUTIL_H */