annotate lib/libswscale/version.h @ 2331:9551756f46c4

Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
author Grumpy7
date Wed, 02 Apr 2014 01:21:05 +0200
parents 992d2e6f907d
children
rev   line source
2134
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
1 /*
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
2 * This file is part of FFmpeg.
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
3 *
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
4 * FFmpeg is free software; you can redistribute it and/or
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
5 * modify it under the terms of the GNU Lesser General Public
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
6 * License as published by the Free Software Foundation; either
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
7 * version 2.1 of the License, or (at your option) any later version.
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
8 *
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
9 * FFmpeg is distributed in the hope that it will be useful,
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
12 * Lesser General Public License for more details.
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
13 *
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
14 * You should have received a copy of the GNU Lesser General Public
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
15 * License along with FFmpeg; if not, write to the Free Software
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
17 */
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
18
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
19 #ifndef SWSCALE_VERSION_H
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
20 #define SWSCALE_VERSION_H
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
21
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
22 /**
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
23 * @file
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
24 * swscale version macros
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
25 */
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
26
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
27 #include "../libavutil/avutil.h"
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
28
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
29 #define LIBSWSCALE_VERSION_MAJOR 2
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
30 #define LIBSWSCALE_VERSION_MINOR 3
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
31 #define LIBSWSCALE_VERSION_MICRO 100
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
32
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
33 #define LIBSWSCALE_VERSION_INT AV_VERSION_INT(LIBSWSCALE_VERSION_MAJOR, \
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
34 LIBSWSCALE_VERSION_MINOR, \
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
35 LIBSWSCALE_VERSION_MICRO)
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
36 #define LIBSWSCALE_VERSION AV_VERSION(LIBSWSCALE_VERSION_MAJOR, \
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
37 LIBSWSCALE_VERSION_MINOR, \
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
38 LIBSWSCALE_VERSION_MICRO)
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
39 #define LIBSWSCALE_BUILD LIBSWSCALE_VERSION_INT
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
40
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
41 #define LIBSWSCALE_IDENT "SwS" AV_STRINGIFY(LIBSWSCALE_VERSION)
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
42
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
43 /**
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
44 * FF_API_* defines may be placed below to indicate public API that will be
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
45 * dropped at a future version bump. The defines themselves are not part of
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
46 * the public API and may change, break or disappear at any time.
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
47 */
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
48
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
49 #ifndef FF_API_SWS_GETCONTEXT
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
50 #define FF_API_SWS_GETCONTEXT (LIBSWSCALE_VERSION_MAJOR < 3)
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
51 #endif
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
52 #ifndef FF_API_SWS_CPU_CAPS
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
53 #define FF_API_SWS_CPU_CAPS (LIBSWSCALE_VERSION_MAJOR < 3)
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
54 #endif
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
55 #ifndef FF_API_SWS_FORMAT_NAME
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
56 #define FF_API_SWS_FORMAT_NAME (LIBSWSCALE_VERSION_MAJOR < 3)
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
57 #endif
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
58
992d2e6f907d preparation for libavcodec
zipi
parents:
diff changeset
59 #endif /* SWSCALE_VERSION_H */