annotate swscale.h @ 3947:c8c591fe26f8 libavcodec

Change license headers to say 'FFmpeg' instead of 'this program/this library' and fix GPL/LGPL version mismatches.
author diego
date Sat, 07 Oct 2006 15:30:46 +0000
parents c537a97eec66
children 207c22206d53
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3699
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3593
diff changeset
1 /*
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3593
diff changeset
2 * copyright (C) 2006 Luca Abeni
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3593
diff changeset
3 *
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3699
diff changeset
4 * This file is part of FFmpeg.
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3699
diff changeset
5 *
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3699
diff changeset
6 * FFmpeg is free software; you can redistribute it and/or
3699
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3593
diff changeset
7 * modify it under the terms of the GNU Lesser General Public
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3593
diff changeset
8 * License as published by the Free Software Foundation; either
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3699
diff changeset
9 * version 2.1 of the License, or (at your option) any later version.
3699
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3593
diff changeset
10 *
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3699
diff changeset
11 * FFmpeg is distributed in the hope that it will be useful,
3699
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3593
diff changeset
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3593
diff changeset
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3593
diff changeset
14 * Lesser General Public License for more details.
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3593
diff changeset
15 *
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3593
diff changeset
16 * You should have received a copy of the GNU Lesser General Public
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3699
diff changeset
17 * License along with FFmpeg; if not, write to the Free Software
3699
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3593
diff changeset
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3593
diff changeset
19 */
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3593
diff changeset
20
3249
ad3d12d04645 Introduce swscale interface in libavcodec
lucabe
parents:
diff changeset
21 #ifndef SWSCALE_EMU_H
ad3d12d04645 Introduce swscale interface in libavcodec
lucabe
parents:
diff changeset
22 #define SWSCALE_EMU_H
3593
3da79b0751b1 Allow swscale emulation header to be included by C++ programs
lucabe
parents: 3518
diff changeset
23
3da79b0751b1 Allow swscale emulation header to be included by C++ programs
lucabe
parents: 3518
diff changeset
24 #ifdef __cplusplus
3da79b0751b1 Allow swscale emulation header to be included by C++ programs
lucabe
parents: 3518
diff changeset
25 extern "C" {
3da79b0751b1 Allow swscale emulation header to be included by C++ programs
lucabe
parents: 3518
diff changeset
26 #endif
3da79b0751b1 Allow swscale emulation header to be included by C++ programs
lucabe
parents: 3518
diff changeset
27
3249
ad3d12d04645 Introduce swscale interface in libavcodec
lucabe
parents:
diff changeset
28 /* Dummy, only useful for compilation! */
ad3d12d04645 Introduce swscale interface in libavcodec
lucabe
parents:
diff changeset
29 #define SWS_FAST_BILINEAR 1
ad3d12d04645 Introduce swscale interface in libavcodec
lucabe
parents:
diff changeset
30 #define SWS_BILINEAR 2
ad3d12d04645 Introduce swscale interface in libavcodec
lucabe
parents:
diff changeset
31 #define SWS_BICUBIC 4
ad3d12d04645 Introduce swscale interface in libavcodec
lucabe
parents:
diff changeset
32 #define SWS_X 8
ad3d12d04645 Introduce swscale interface in libavcodec
lucabe
parents:
diff changeset
33 #define SWS_POINT 0x10
ad3d12d04645 Introduce swscale interface in libavcodec
lucabe
parents:
diff changeset
34 #define SWS_AREA 0x20
ad3d12d04645 Introduce swscale interface in libavcodec
lucabe
parents:
diff changeset
35 #define SWS_BICUBLIN 0x40
ad3d12d04645 Introduce swscale interface in libavcodec
lucabe
parents:
diff changeset
36 #define SWS_GAUSS 0x80
ad3d12d04645 Introduce swscale interface in libavcodec
lucabe
parents:
diff changeset
37 #define SWS_SINC 0x100
ad3d12d04645 Introduce swscale interface in libavcodec
lucabe
parents:
diff changeset
38 #define SWS_LANCZOS 0x200
ad3d12d04645 Introduce swscale interface in libavcodec
lucabe
parents:
diff changeset
39 #define SWS_SPLINE 0x400
ad3d12d04645 Introduce swscale interface in libavcodec
lucabe
parents:
diff changeset
40
ad3d12d04645 Introduce swscale interface in libavcodec
lucabe
parents:
diff changeset
41 #define SwsFilter void
ad3d12d04645 Introduce swscale interface in libavcodec
lucabe
parents:
diff changeset
42 struct SwsContext {
ad3d12d04645 Introduce swscale interface in libavcodec
lucabe
parents:
diff changeset
43 struct ImgReSampleContext *resampling_ctx;
ad3d12d04645 Introduce swscale interface in libavcodec
lucabe
parents:
diff changeset
44 enum PixelFormat src_pix_fmt, dst_pix_fmt;
ad3d12d04645 Introduce swscale interface in libavcodec
lucabe
parents:
diff changeset
45 };
ad3d12d04645 Introduce swscale interface in libavcodec
lucabe
parents:
diff changeset
46
ad3d12d04645 Introduce swscale interface in libavcodec
lucabe
parents:
diff changeset
47 struct SwsContext *sws_getContext(int srcW, int srcH, int srcFormat,
ad3d12d04645 Introduce swscale interface in libavcodec
lucabe
parents:
diff changeset
48 int dstW, int dstH, int dstFormat,
ad3d12d04645 Introduce swscale interface in libavcodec
lucabe
parents:
diff changeset
49 int flags, SwsFilter *srcFilter,
ad3d12d04645 Introduce swscale interface in libavcodec
lucabe
parents:
diff changeset
50 SwsFilter *dstFilter, double *param);
ad3d12d04645 Introduce swscale interface in libavcodec
lucabe
parents:
diff changeset
51
ad3d12d04645 Introduce swscale interface in libavcodec
lucabe
parents:
diff changeset
52 int sws_scale(struct SwsContext *ctx, uint8_t* src[], int srcStride[],
ad3d12d04645 Introduce swscale interface in libavcodec
lucabe
parents:
diff changeset
53 int srcSliceY, int srcSliceH, uint8_t* dst[], int dstStride[]);
ad3d12d04645 Introduce swscale interface in libavcodec
lucabe
parents:
diff changeset
54
ad3d12d04645 Introduce swscale interface in libavcodec
lucabe
parents:
diff changeset
55 void sws_freeContext(struct SwsContext *swsContext);
ad3d12d04645 Introduce swscale interface in libavcodec
lucabe
parents:
diff changeset
56
3593
3da79b0751b1 Allow swscale emulation header to be included by C++ programs
lucabe
parents: 3518
diff changeset
57 #ifdef __cplusplus
3da79b0751b1 Allow swscale emulation header to be included by C++ programs
lucabe
parents: 3518
diff changeset
58 }
3da79b0751b1 Allow swscale emulation header to be included by C++ programs
lucabe
parents: 3518
diff changeset
59 #endif
3da79b0751b1 Allow swscale emulation header to be included by C++ programs
lucabe
parents: 3518
diff changeset
60
3249
ad3d12d04645 Introduce swscale interface in libavcodec
lucabe
parents:
diff changeset
61 #endif /* SWSCALE_EMU_H */