diff options
author | Christian König <deathsimple@vodafone.de> | 2012-02-07 18:00:41 +0100 |
---|---|---|
committer | Christian König <deathsimple@vodafone.de> | 2012-02-10 12:06:00 +0100 |
commit | a9ffcceee9214342dab2085a35452acaa41003c5 (patch) | |
tree | d626995e7455e9bd0f3d2cca7e1504426b446321 /src/gallium/auxiliary/Makefile.sources | |
parent | a7750c9fb5db9d76318c35a901f5359bf586cddf (diff) | |
download | external_mesa3d-a9ffcceee9214342dab2085a35452acaa41003c5.zip external_mesa3d-a9ffcceee9214342dab2085a35452acaa41003c5.tar.gz external_mesa3d-a9ffcceee9214342dab2085a35452acaa41003c5.tar.bz2 |
vl: add a median filter for noise reduction
This is a shader based median filter, generally
used for noise reduction, it could still need some
improvements, but should usually work out of the box.
Signed-off-by: Christian König <deathsimple@vodafone.de>
Diffstat (limited to 'src/gallium/auxiliary/Makefile.sources')
-rw-r--r-- | src/gallium/auxiliary/Makefile.sources | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/Makefile.sources b/src/gallium/auxiliary/Makefile.sources index 740e301..c69dbba 100644 --- a/src/gallium/auxiliary/Makefile.sources +++ b/src/gallium/auxiliary/Makefile.sources @@ -138,6 +138,7 @@ C_SOURCES := \ util/u_vbuf.c \ vl/vl_csc.c \ vl/vl_compositor.c \ + vl/vl_median_filter.c \ vl/vl_decoder.c \ vl/vl_mpeg12_decoder.c \ vl/vl_mpeg12_bitstream.c \ |