Mercurial > mplayer.hg
annotate postproc/swscale.h @ 6585:eb10ce6b3f18
multifile (informal output) fix by Balazs Tibor (tibcu)
author | alex |
---|---|
date | Fri, 28 Jun 2002 16:33:46 +0000 |
parents | 5059143aa020 |
children | f47f12ba3b88 |
rev | line source |
---|---|
4295 | 1 /* |
2 Copyright (C) 2001-2002 Michael Niedermayer <michaelni@gmx.at> | |
3 | |
4 This program is free software; you can redistribute it and/or modify | |
5 it under the terms of the GNU General Public License as published by | |
6 the Free Software Foundation; either version 2 of the License, or | |
7 (at your option) any later version. | |
8 | |
9 This program is distributed in the hope that it will be useful, | |
10 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 GNU General Public License for more details. | |
13 | |
14 You should have received a copy of the GNU General Public License | |
15 along with this program; if not, write to the Free Software | |
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
17 */ | |
3272 | 18 |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
19 /* values for the flags, the stuff on the command line is different */ |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
20 #define SWS_FAST_BILINEAR 1 |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
21 #define SWS_BILINEAR 2 |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
22 #define SWS_BICUBIC 4 |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
23 #define SWS_X 8 |
4401
8d00348d0d6b
nearest neighbor / sdl emulation ;) scaling (-sws 4)
michael
parents:
4297
diff
changeset
|
24 #define SWS_POINT 0x10 |
4402
67abbf501b02
area averageing scaling support (-sws 5) (is identical to bilinear for upscale)
michael
parents:
4401
diff
changeset
|
25 #define SWS_AREA 0x20 |
6580 | 26 #define SWS_BICUBLIN 0x40 |
4467 | 27 |
6540 | 28 #define SWS_SRC_V_CHR_DROP_MASK 0x300 |
29 #define SWS_SRC_V_CHR_DROP_SHIFT 8 | |
30 | |
4467 | 31 //the following 4 flags are not completly implemented |
32 //internal chrominace subsamling info | |
6541 | 33 #define SWS_FULL_CHR_H_INT 0x2000 |
4467 | 34 //input subsampling info |
6541 | 35 #define SWS_FULL_CHR_H_INP 0x4000 |
36 #define SWS_DIRECT_BGR 0x8000 | |
4467 | 37 |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
38 #define SWS_PRINT_INFO 0x1000 |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
39 |
4290
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
40 #define SWS_MAX_REDUCE_CUTOFF 0.002 |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
41 |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
42 /* this struct should be aligned on at least 32-byte boundary */ |
4554 | 43 typedef struct SwsContext{ |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
44 int srcW, srcH, dstW, dstH; |
4467 | 45 int chrSrcW, chrSrcH, chrDstW, chrDstH; |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
46 int lumXInc, chrXInc; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
47 int lumYInc, chrYInc; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
48 int dstFormat, srcFormat; |
6517 | 49 int chrSrcHSubSample, chrSrcVSubSample; |
50 int chrIntHSubSample, chrIntVSubSample; | |
51 int chrDstHSubSample, chrDstVSubSample; | |
6540 | 52 int vChrDrop; |
4290
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
53 |
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
54 int16_t **lumPixBuf; |
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
55 int16_t **chrPixBuf; |
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
56 int16_t *hLumFilter; |
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
57 int16_t *hLumFilterPos; |
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
58 int16_t *hChrFilter; |
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
59 int16_t *hChrFilterPos; |
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
60 int16_t *vLumFilter; |
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
61 int16_t *vLumFilterPos; |
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
62 int16_t *vChrFilter; |
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
63 int16_t *vChrFilterPos; |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
64 |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
65 // Contain simply the values from v(Lum|Chr)Filter just nicely packed for mmx |
4290
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
66 int16_t *lumMmxFilter; |
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
67 int16_t *chrMmxFilter; |
4467 | 68 uint8_t formatConvBuffer[4000]; //FIXME dynamic alloc, but we have to change alot of code for this to be usefull |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
69 |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
70 int hLumFilterSize; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
71 int hChrFilterSize; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
72 int vLumFilterSize; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
73 int vChrFilterSize; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
74 int vLumBufSize; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
75 int vChrBufSize; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
76 |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
77 uint8_t __attribute__((aligned(32))) funnyYCode[10000]; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
78 uint8_t __attribute__((aligned(32))) funnyUVCode[10000]; |
5452 | 79 int32_t *lumMmx2FilterPos; |
80 int32_t *chrMmx2FilterPos; | |
81 int16_t *lumMmx2Filter; | |
82 int16_t *chrMmx2Filter; | |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
83 |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
84 int canMMX2BeUsed; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
85 |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
86 int lastInLumBuf; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
87 int lastInChrBuf; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
88 int lumBufIndex; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
89 int chrBufIndex; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
90 int dstY; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
91 int flags; |
6578 | 92 void * yuvTable; |
93 void * table_rV[256]; | |
94 void * table_gU[256]; | |
95 int table_gV[256]; | |
96 void * table_bU[256]; | |
4554 | 97 |
98 void (*swScale)(struct SwsContext *context, uint8_t* src[], int srcStride[], int srcSliceY, | |
99 int srcSliceH, uint8_t* dst[], int dstStride[]); | |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
100 } SwsContext; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
101 //FIXME check init (where 0) |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
102 |
4290
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
103 // when used for filters they must have an odd number of elements |
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
104 // coeffs cannot be shared between vectors |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
105 typedef struct { |
4290
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
106 double *coeff; |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
107 int length; |
4290
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
108 } SwsVector; |
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
109 |
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
110 // vectors can be shared |
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
111 typedef struct { |
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
112 SwsVector *lumH; |
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
113 SwsVector *lumV; |
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
114 SwsVector *chrH; |
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
115 SwsVector *chrV; |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
116 } SwsFilter; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
117 |
2217 | 118 |
2519 | 119 // *** bilinear scaling and yuv->rgb & yuv->yuv conversion of yv12 slices: |
2217 | 120 // *** Note: it's called multiple times while decoding a frame, first time y==0 |
2519 | 121 // dstbpp == 12 -> yv12 output |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
122 // will use sws_flags |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
123 void SwScale_YV12slice(unsigned char* src[],int srcStride[], int srcSliceY, |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
124 int srcSliceH, uint8_t* dst[], int dstStride, int dstbpp, |
3209 | 125 int srcW, int srcH, int dstW, int dstH); |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
126 |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
127 // Obsolete, will be removed soon |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
128 void SwScale_Init(); |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
129 |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
130 |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
131 |
4290
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
132 void freeSwsContext(SwsContext *swsContext); |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
133 |
4419 | 134 SwsContext *getSwsContextFromCmdLine(int srcW, int srcH, int srcFormat, int dstW, int dstH, int dstFormat); |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
135 SwsContext *getSwsContext(int srcW, int srcH, int srcFormat, int dstW, int dstH, int dstFormat, int flags, |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
136 SwsFilter *srcFilter, SwsFilter *dstFilter); |
6540 | 137 void swsGetFlagsAndFilterFromCmdLine(int *flags, SwsFilter **srcFilterParam, SwsFilter **dstFilterParam); |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
138 |
4290
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
139 SwsVector *getGaussianVec(double variance, double quality); |
4297
29fef3982238
15/16 bit dithering in C (5% slower, can be disabled by comenting #define DITHER1XBPP out)
michael
parents:
4295
diff
changeset
|
140 SwsVector *getConstVec(double c, int length); |
4290
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
141 SwsVector *getIdentityVec(void); |
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
142 void scaleVec(SwsVector *a, double scalar); |
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
143 void normalizeVec(SwsVector *a, double height); |
4294
21dbbbbd5479
a few filters (should be removed/merged when arpis videofilter stuff is finished)
michael
parents:
4290
diff
changeset
|
144 void convVec(SwsVector *a, SwsVector *b); |
21dbbbbd5479
a few filters (should be removed/merged when arpis videofilter stuff is finished)
michael
parents:
4290
diff
changeset
|
145 void addVec(SwsVector *a, SwsVector *b); |
21dbbbbd5479
a few filters (should be removed/merged when arpis videofilter stuff is finished)
michael
parents:
4290
diff
changeset
|
146 void subVec(SwsVector *a, SwsVector *b); |
21dbbbbd5479
a few filters (should be removed/merged when arpis videofilter stuff is finished)
michael
parents:
4290
diff
changeset
|
147 void shiftVec(SwsVector *a, int shift); |
21dbbbbd5479
a few filters (should be removed/merged when arpis videofilter stuff is finished)
michael
parents:
4290
diff
changeset
|
148 SwsVector *cloneVec(SwsVector *a); |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
149 |
4290
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
150 void printVec(SwsVector *a); |
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
151 void freeVec(SwsVector *a); |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
3344
diff
changeset
|
152 |