Commit 5907d722 authored by Branko Kokanovic's avatar Branko Kokanovic Committed by Rémi Denis-Courmont

Sepia video filter

Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
parent 2e1b9e44
...@@ -56,6 +56,7 @@ Video Filter: ...@@ -56,6 +56,7 @@ Video Filter:
* 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 * New posterize filter for lowering the number of colors
* Atmo ambilight: improve Fnordlicht up to 254 channels * Atmo ambilight: improve Fnordlicht up to 254 channels
* New sepia filter for creating sepia effect in videos
Audio Output: Audio Output:
* New audio output based on AudioQueue API for iOS * New audio output based on AudioQueue API for iOS
......
...@@ -267,6 +267,7 @@ $Id$ ...@@ -267,6 +267,7 @@ $Id$
* schroedinger: Schroedinger video decoder * schroedinger: Schroedinger video decoder
* screen: a input module that takes screenshots of the primary monitor * screen: a input module that takes screenshots of the primary monitor
* sdl_image: SDL-based image decoder * sdl_image: SDL-based image decoder
* sepia: Sepia video filter
* sharpen: Sharpen video filter * sharpen: Sharpen video filter
* shine: MP3 encoder using Shine, a fixed point implementation * shine: MP3 encoder using Shine, a fixed point implementation
* simple_channel_mixer: channel mixer * simple_channel_mixer: channel mixer
......
...@@ -52,6 +52,7 @@ SOURCES_swscale_omap = swscale_omap.c \ ...@@ -52,6 +52,7 @@ SOURCES_swscale_omap = swscale_omap.c \
libswscale_nokia770/arm_jit_swscale.h \ libswscale_nokia770/arm_jit_swscale.h \
libswscale_nokia770/arm_colorconv.h libswscale_nokia770/arm_colorconv.h
SOURCES_scene = scene.c SOURCES_scene = scene.c
SOURCES_sepia = sepia.c
SOURCES_yuvp = yuvp.c SOURCES_yuvp = yuvp.c
SOURCES_atmo = atmo/atmo.cpp \ SOURCES_atmo = atmo/atmo.cpp \
atmo/AtmoDefs.h \ atmo/AtmoDefs.h \
...@@ -114,6 +115,7 @@ libvlc_LTLIBRARIES += \ ...@@ -114,6 +115,7 @@ libvlc_LTLIBRARIES += \
librv32_plugin.la \ librv32_plugin.la \
libscale_plugin.la \ libscale_plugin.la \
libscene_plugin.la \ libscene_plugin.la \
libsepia_plugin.la \
libsharpen_plugin.la \ libsharpen_plugin.la \
libtransform_plugin.la \ libtransform_plugin.la \
libwall_plugin.la \ libwall_plugin.la \
......
This diff is collapsed.
...@@ -1122,6 +1122,7 @@ modules/video_filter/rss.c ...@@ -1122,6 +1122,7 @@ modules/video_filter/rss.c
modules/video_filter/rv32.c modules/video_filter/rv32.c
modules/video_filter/scale.c modules/video_filter/scale.c
modules/video_filter/scene.c modules/video_filter/scene.c
modules/video_filter/sepia.c
modules/video_filter/sharpen.c modules/video_filter/sharpen.c
modules/video_filter/swscale.c modules/video_filter/swscale.c
modules/video_filter/swscale_omap.c modules/video_filter/swscale_omap.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