2 Copyright (C) 2002 Michael Niedermayer <michaelni@gmx.at>
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.
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.
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
32 #ifdef USE_LIBAVUTIL_SO
33 #include <ffmpeg/avutil.h>
37 #include "img_format.h"
40 #include "libvo/fastmemcpy.h"
41 #include "libswscale/swscale.h"
45 //===========================================================================//
47 typedef struct FilterParam
{
49 float preFilterRadius
;
52 struct SwsContext
*preFilterContext
;
53 uint8_t *preFilterBuf
;
58 int colorDiffCoeff
[512];
67 /***************************************************************************/
69 //FIXME stupid code duplication
70 static void getSubSampleFactors(int *h
, int *v
, int format
){
96 static int allocStuff(FilterParam
*f
, int width
, int height
){
97 int stride
= (width
+7)&~7;
101 f
->preFilterBuf
= (uint8_t*)memalign(8, stride
*height
);
102 f
->preFilterStride
= stride
;
104 vec
= sws_getGaussianVec(f
->preFilterRadius
, f
->quality
);
105 swsF
.lumH
= swsF
.lumV
= vec
;
106 swsF
.chrH
= swsF
.chrV
= NULL
;
107 f
->preFilterContext
= sws_getContext(
108 width
, height
, PIX_FMT_GRAY8
, width
, height
, PIX_FMT_GRAY8
, get_sws_cpuflags(), &swsF
, NULL
, NULL
);
111 vec
= sws_getGaussianVec(f
->strength
, 5.0);
112 for(i
=0; i
<512; i
++){
114 int index
= i
-256 + vec
->length
/2;
116 if(index
<0 || index
>=vec
->length
) d
= 0.0;
117 else d
= vec
->coeff
[index
];
119 f
->colorDiffCoeff
[i
]= (int)(d
/vec
->coeff
[vec
->length
/2]*(1<<12) + 0.5);
122 vec
= sws_getGaussianVec(f
->radius
, f
->quality
);
123 f
->distWidth
= vec
->length
;
124 f
->distStride
= (vec
->length
+7)&~7;
125 f
->distCoeff
= (int32_t*)memalign(8, f
->distWidth
*f
->distStride
*sizeof(int32_t));
127 for(y
=0; y
<vec
->length
; y
++){
128 for(x
=0; x
<vec
->length
; x
++){
129 double d
= vec
->coeff
[x
] * vec
->coeff
[y
];
131 f
->distCoeff
[x
+ y
*f
->distStride
]= (int)(d
*(1<<10) + 0.5);
132 // if(y==vec->length/2)
133 // printf("%6d ", f->distCoeff[x + y*f->distStride]);
141 static int config(struct vf_instance_s
* vf
,
142 int width
, int height
, int d_width
, int d_height
,
143 unsigned int flags
, unsigned int outfmt
){
146 //asm volatile("emms\n\t");
147 allocStuff(&vf
->priv
->luma
, width
, height
);
149 getSubSampleFactors(&sw
, &sh
, outfmt
);
150 allocStuff(&vf
->priv
->chroma
, width
>>sw
, height
>>sh
);
152 return vf_next_config(vf
,width
,height
,d_width
,d_height
,flags
,outfmt
);
155 static void freeBuffers(FilterParam
*f
){
156 if(f
->preFilterContext
) sws_freeContext(f
->preFilterContext
);
157 f
->preFilterContext
=NULL
;
159 if(f
->preFilterBuf
) free(f
->preFilterBuf
);
160 f
->preFilterBuf
=NULL
;
162 if(f
->distCoeff
) free(f
->distCoeff
);
166 static void uninit(struct vf_instance_s
* vf
){
167 if(!vf
->priv
) return;
169 freeBuffers(&vf
->priv
->luma
);
170 freeBuffers(&vf
->priv
->chroma
);
176 static inline void blur(uint8_t *dst
, uint8_t *src
, int w
, int h
, int dstStride
, int srcStride
, FilterParam
*fp
){
179 const int radius
= f
.distWidth
/2;
180 uint8_t *srcArray
[3]= {src
, NULL
, NULL
};
181 uint8_t *dstArray
[3]= {f
.preFilterBuf
, NULL
, NULL
};
182 int srcStrideArray
[3]= {srcStride
, 0, 0};
183 int dstStrideArray
[3]= {f
.preFilterStride
, 0, 0};
185 // f.preFilterContext->swScale(f.preFilterContext, srcArray, srcStrideArray, 0, h, dstArray, dstStrideArray);
186 sws_scale(f
.preFilterContext
, srcArray
, srcStrideArray
, 0, h
, dstArray
, dstStrideArray
);
193 const int preVal
= f
.preFilterBuf
[x
+ y
*f
.preFilterStride
];
195 const int srcVal
= src
[x
+ y
*srcStride
];
197 dst
[x
+ y
*dstStride
]= srcVal
;
198 if(y
%32==0) dst
[x
+ y
*dstStride
]= 0;
202 if(x
>= radius
&& x
< w
- radius
){
203 for(dy
=0; dy
<radius
*2+1; dy
++){
205 int iy
= y
+dy
- radius
;
207 else if(iy
>=h
) iy
= h
-iy
-1;
209 for(dx
=0; dx
<radius
*2+1; dx
++){
210 const int ix
= x
+dx
- radius
;
213 factor
= f
.colorDiffCoeff
[256+preVal
- f
.preFilterBuf
[ix
+ iy
*f
.preFilterStride
] ]
214 *f
.distCoeff
[dx
+ dy
*f
.distStride
];
215 sum
+= src
[ix
+ iy
*srcStride
] *factor
;
220 for(dy
=0; dy
<radius
*2+1; dy
++){
222 int iy
= y
+dy
- radius
;
224 else if(iy
>=h
) iy
= h
-iy
-1;
226 for(dx
=0; dx
<radius
*2+1; dx
++){
227 int ix
= x
+dx
- radius
;
230 else if(ix
>=w
) ix
= w
-ix
-1;
232 factor
= f
.colorDiffCoeff
[256+preVal
- f
.preFilterBuf
[ix
+ iy
*f
.preFilterStride
] ]
233 *f
.distCoeff
[dx
+ dy
*f
.distStride
];
234 sum
+= src
[ix
+ iy
*srcStride
] *factor
;
239 dst
[x
+ y
*dstStride
]= (sum
+ div
/2)/div
;
244 static int put_image(struct vf_instance_s
* vf
, mp_image_t
*mpi
, double pts
){
245 int cw
= mpi
->w
>> mpi
->chroma_x_shift
;
246 int ch
= mpi
->h
>> mpi
->chroma_y_shift
;
248 mp_image_t
*dmpi
=vf_get_image(vf
->next
,mpi
->imgfmt
,
249 MP_IMGTYPE_TEMP
, MP_IMGFLAG_ACCEPT_STRIDE
,
252 assert(mpi
->flags
&MP_IMGFLAG_PLANAR
);
254 blur(dmpi
->planes
[0], mpi
->planes
[0], mpi
->w
,mpi
->h
, dmpi
->stride
[0], mpi
->stride
[0], &vf
->priv
->luma
);
255 blur(dmpi
->planes
[1], mpi
->planes
[1], cw
, ch
, dmpi
->stride
[1], mpi
->stride
[1], &vf
->priv
->chroma
);
256 blur(dmpi
->planes
[2], mpi
->planes
[2], cw
, ch
, dmpi
->stride
[2], mpi
->stride
[2], &vf
->priv
->chroma
);
258 return vf_next_put_image(vf
,dmpi
, pts
);
261 //===========================================================================//
263 static int query_format(struct vf_instance_s
* vf
, unsigned int fmt
){
273 return vf_next_query_format(vf
, fmt
);
278 static int open(vf_instance_t
*vf
, char* args
){
282 vf
->put_image
=put_image
;
283 // vf->get_image=get_image;
284 vf
->query_format
=query_format
;
286 vf
->priv
=malloc(sizeof(struct vf_priv_s
));
287 memset(vf
->priv
, 0, sizeof(struct vf_priv_s
));
289 if(args
==NULL
) return 0;
291 e
=sscanf(args
, "%f:%f:%f:%f:%f:%f",
292 &vf
->priv
->luma
.radius
,
293 &vf
->priv
->luma
.preFilterRadius
,
294 &vf
->priv
->luma
.strength
,
295 &vf
->priv
->chroma
.radius
,
296 &vf
->priv
->chroma
.preFilterRadius
,
297 &vf
->priv
->chroma
.strength
300 vf
->priv
->luma
.quality
= vf
->priv
->chroma
.quality
= 3.0;
303 vf
->priv
->chroma
.radius
= vf
->priv
->luma
.radius
;
304 vf
->priv
->chroma
.preFilterRadius
= vf
->priv
->luma
.preFilterRadius
;
305 vf
->priv
->chroma
.strength
= vf
->priv
->luma
.strength
;
309 // if(vf->priv->luma.radius < 0) return 0;
310 // if(vf->priv->chroma.radius < 0) return 0;
315 vf_info_t vf_info_sab
= {
316 "shape adaptive blur",
318 "Michael Niedermayer",
324 //===========================================================================//