Mercurial > libavutil.hg
annotate avutil.h @ 1028:5dbb12a37c3d libavutil tip
Move av_set_options_string() from libavfilter to libavutil.
| author | stefano |
|---|---|
| date | Mon, 27 Sep 2010 22:09:53 +0000 |
| parents | 7d79d41d152e |
| children |
| 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 | 21 #ifndef AVUTIL_AVUTIL_H |
| 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 /** |
|
899
0795a743bda1
Remove explicit filename from Doxygen @file commands.
diego
parents:
894
diff
changeset
|
25 * @file |
| 466 | 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 |
| 823 | 32 |
| 33 #define AV_GLUE(a, b) a ## b | |
| 34 #define AV_JOIN(a, b) AV_GLUE(a, b) | |
| 35 | |
|
821
ee9a0af0b0db
Add an AV_PRAGMA() macro for constructing _Pragma() directives
mru
parents:
805
diff
changeset
|
36 #define AV_PRAGMA(s) _Pragma(#s) |
|
267
d363937cc410
Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff
changeset
|
37 |
| 459 | 38 #define AV_VERSION_INT(a, b, c) (a<<16 | b<<8 | c) |
| 39 #define AV_VERSION_DOT(a, b, c) a ##.## b ##.## c | |
| 40 #define AV_VERSION(a, b, c) AV_VERSION_DOT(a, b, c) | |
| 453 | 41 |
| 681 | 42 #define LIBAVUTIL_VERSION_MAJOR 50 |
|
1028
5dbb12a37c3d
Move av_set_options_string() from libavfilter to libavutil.
stefano
parents:
1027
diff
changeset
|
43 #define LIBAVUTIL_VERSION_MINOR 31 |
|
973
877139dadde8
avutil: bump minor version for r23985 (install lfg.h)
ramiro
parents:
967
diff
changeset
|
44 #define LIBAVUTIL_VERSION_MICRO 0 |
| 453 | 45 |
| 459 | 46 #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \ |
| 47 LIBAVUTIL_VERSION_MINOR, \ | |
| 48 LIBAVUTIL_VERSION_MICRO) | |
| 49 #define LIBAVUTIL_VERSION AV_VERSION(LIBAVUTIL_VERSION_MAJOR, \ | |
| 50 LIBAVUTIL_VERSION_MINOR, \ | |
| 51 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
|
52 #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
|
53 |
|
d363937cc410
Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff
changeset
|
54 #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
|
55 |
| 545 | 56 /** |
| 957 | 57 * Return the LIBAVUTIL_VERSION_INT constant. |
| 545 | 58 */ |
| 59 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
|
60 |
|
792
57659b3ef05c
Add functions to return library license and library configuration.
diego
parents:
784
diff
changeset
|
61 /** |
| 957 | 62 * Return the libavutil build-time configuration. |
|
792
57659b3ef05c
Add functions to return library license and library configuration.
diego
parents:
784
diff
changeset
|
63 */ |
|
805
98783d518982
Prefer "*FUNC_NAME(" over "* FUNC_NAME(" for XXX_configuration() and
stefano
parents:
799
diff
changeset
|
64 const char *avutil_configuration(void); |
|
792
57659b3ef05c
Add functions to return library license and library configuration.
diego
parents:
784
diff
changeset
|
65 |
|
57659b3ef05c
Add functions to return library license and library configuration.
diego
parents:
784
diff
changeset
|
66 /** |
| 957 | 67 * Return the libavutil license. |
|
792
57659b3ef05c
Add functions to return library license and library configuration.
diego
parents:
784
diff
changeset
|
68 */ |
|
805
98783d518982
Prefer "*FUNC_NAME(" over "* FUNC_NAME(" for XXX_configuration() and
stefano
parents:
799
diff
changeset
|
69 const char *avutil_license(void); |
|
792
57659b3ef05c
Add functions to return library license and library configuration.
diego
parents:
784
diff
changeset
|
70 |
| 894 | 71 enum AVMediaType { |
| 72 AVMEDIA_TYPE_UNKNOWN = -1, | |
| 73 AVMEDIA_TYPE_VIDEO, | |
| 74 AVMEDIA_TYPE_AUDIO, | |
| 75 AVMEDIA_TYPE_DATA, | |
| 76 AVMEDIA_TYPE_SUBTITLE, | |
| 77 AVMEDIA_TYPE_ATTACHMENT, | |
| 78 AVMEDIA_TYPE_NB | |
| 79 }; | |
| 80 | |
| 1022 | 81 #define FF_LAMBDA_SHIFT 7 |
| 82 #define FF_LAMBDA_SCALE (1<<FF_LAMBDA_SHIFT) | |
| 83 #define FF_QP2LAMBDA 118 ///< factor to convert from H.263 QP to lambda | |
| 84 #define FF_LAMBDA_MAX (256*128-1) | |
| 85 | |
| 86 #define FF_QUALITY_SCALE FF_LAMBDA_SCALE //FIXME maybe remove | |
| 87 | |
|
267
d363937cc410
Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff
changeset
|
88 #include "common.h" |
|
877
51fd7ea406a1
Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
861
diff
changeset
|
89 #include "error.h" |
|
267
d363937cc410
Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff
changeset
|
90 #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
|
91 #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
|
92 #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
|
93 #include "log.h" |
|
671
e847c4a1d29a
Split avutil.h, move all the pixel format definitions to the new
stefano
parents:
670
diff
changeset
|
94 #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
|
95 |
| 567 | 96 #endif /* AVUTIL_AVUTIL_H */ |
