Commit 6028275a authored by Branko Kokanovic's avatar Branko Kokanovic Committed by Rémi Denis-Courmont

adding posterize video filter

Acked-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
parent 8e32c9aa
...@@ -38,6 +38,7 @@ Audio Filter: ...@@ -38,6 +38,7 @@ Audio Filter:
Video Filter: Video Filter:
* New gradfun filter for debanding videos using dithering * New gradfun filter for debanding videos using dithering
* Rewrite of the grain filter, faster and with better quality * Rewrite of the grain filter, faster and with better quality
* New posterize filter for lowering the number of colors
Stream output: Stream output:
* New livehttp-module for HTTP Live Streamin (iphone-stuff), * New livehttp-module for HTTP Live Streamin (iphone-stuff),
......
...@@ -232,6 +232,7 @@ $Id$ ...@@ -232,6 +232,7 @@ $Id$
* png: PNG images decoder * png: PNG images decoder
* podcast: podcast feed parser * podcast: podcast feed parser
* portaudio: audio output module that uses the portaudio library (www.portaudio.com) * portaudio: audio output module that uses the portaudio library (www.portaudio.com)
* posterize: posterize video filter
* postproc: Video post processing filter * postproc: Video post processing filter
* projectm: visualisation using libprojectM * projectm: visualisation using libprojectM
* ps: input module for MPEG PS decapsulation * ps: input module for MPEG PS decapsulation
......
...@@ -22,6 +22,7 @@ SOURCES_remoteosd = remoteosd.c remoteosd_rfbproto.h ...@@ -22,6 +22,7 @@ SOURCES_remoteosd = remoteosd.c remoteosd_rfbproto.h
SOURCES_magnify = magnify.c SOURCES_magnify = magnify.c
SOURCES_wave = wave.c SOURCES_wave = wave.c
SOURCES_ripple = ripple.c SOURCES_ripple = ripple.c
SOURCES_posterize = posterize.c
SOURCES_psychedelic = psychedelic.c SOURCES_psychedelic = psychedelic.c
SOURCES_gradient = gradient.c SOURCES_gradient = gradient.c
SOURCES_ball = ball.c SOURCES_ball = ball.c
...@@ -104,6 +105,7 @@ libvlc_LTLIBRARIES += \ ...@@ -104,6 +105,7 @@ libvlc_LTLIBRARIES += \
libmotionblur_plugin.la \ libmotionblur_plugin.la \
libmotiondetect_plugin.la \ libmotiondetect_plugin.la \
libnoise_plugin.la \ libnoise_plugin.la \
libposterize_plugin.la \
libpsychedelic_plugin.la \ libpsychedelic_plugin.la \
libpuzzle_plugin.la \ libpuzzle_plugin.la \
libripple_plugin.la \ libripple_plugin.la \
......
This diff is collapsed.
...@@ -1113,6 +1113,7 @@ modules/video_filter/opencv_example.c ...@@ -1113,6 +1113,7 @@ modules/video_filter/opencv_example.c
modules/video_filter/opencv_wrapper.c modules/video_filter/opencv_wrapper.c
modules/video_filter/osdmenu.c modules/video_filter/osdmenu.c
modules/video_filter/panoramix.c modules/video_filter/panoramix.c
modules/video_filter/posterize.c
modules/video_filter/postproc.c modules/video_filter/postproc.c
modules/video_filter/psychedelic.c modules/video_filter/psychedelic.c
modules/video_filter/puzzle.c modules/video_filter/puzzle.c
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment