Commit 03f9f5fe authored by Antoine Cellerier's avatar Antoine Cellerier

* New color extraction video filter. Can be used to extract the Red, Green or...

 * New color extraction video filter. Can be used to extract the Red, Green or Blue component from a video.
 * Add stuff about motiondetect and extract in the News (even though motiondetect isn't finished)
parent dfc8b3df
...@@ -31,6 +31,8 @@ Video output: ...@@ -31,6 +31,8 @@ Video output:
* Adjust, Invert and Distort (now splitted into Wave, Ripple, Gradient * Adjust, Invert and Distort (now splitted into Wave, Ripple, Gradient
and Psychedelic) video filters can now be streamed and Psychedelic) video filters can now be streamed
* New puzzle video output filter * New puzzle video output filter
* Rewrite motion detection video filter
* New extract video filter (extract Red, Green and Blue components from a video)
Interfaces: Interfaces:
* Windows/Linux * Windows/Linux
......
...@@ -1127,7 +1127,7 @@ dnl ...@@ -1127,7 +1127,7 @@ dnl
VLC_ADD_PLUGINS([dummy logger memcpy]) VLC_ADD_PLUGINS([dummy logger memcpy])
VLC_ADD_PLUGINS([mpgv mpga m4v m4a h264 ps pva avi asf mp4 rawdv nsv real aiff mjpeg demuxdump flacsys tta]) VLC_ADD_PLUGINS([mpgv mpga m4v m4a h264 ps pva avi asf mp4 rawdv nsv real aiff mjpeg demuxdump flacsys tta])
VLC_ADD_PLUGINS([cvdsub svcdsub spudec subsdec dvbsub mpeg_audio lpcm a52 dts cinepak flac]) VLC_ADD_PLUGINS([cvdsub svcdsub spudec subsdec dvbsub mpeg_audio lpcm a52 dts cinepak flac])
VLC_ADD_PLUGINS([deinterlace invert adjust transform wave ripple psychedelic gradient motionblur rv32 rotate noise]) VLC_ADD_PLUGINS([deinterlace invert adjust transform wave ripple psychedelic gradient motionblur rv32 rotate noise extract])
VLC_ADD_PLUGINS([converter_fixed mono]) VLC_ADD_PLUGINS([converter_fixed mono])
VLC_ADD_PLUGINS([trivial_resampler ugly_resampler]) VLC_ADD_PLUGINS([trivial_resampler ugly_resampler])
VLC_ADD_PLUGINS([trivial_channel_mixer trivial_mixer]) VLC_ADD_PLUGINS([trivial_channel_mixer trivial_mixer])
......
...@@ -27,4 +27,5 @@ SOURCES_rotate = rotate.c ...@@ -27,4 +27,5 @@ SOURCES_rotate = rotate.c
SOURCES_noise = noise.c SOURCES_noise = noise.c
SOURCES_puzzle = puzzle.c SOURCES_puzzle = puzzle.c
SOURCES_colorthres = colorthres.c SOURCES_colorthres = colorthres.c
SOURCES_extract = extract.c
noinst_HEADERS = filter_common.h noinst_HEADERS = filter_common.h
This diff is collapsed.
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