Commit 7bcd0baa authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

cache_block: rewrite "method 1" stream_access as stream filter

parent 84d07db2
...@@ -66,6 +66,7 @@ $Id$ ...@@ -66,6 +66,7 @@ $Id$
* bonjour: Zeroconf services discovery * bonjour: Zeroconf services discovery
* bpg: BPG image decoder using libbpg * bpg: BPG image decoder using libbpg
* caca: color ASCII art video output using libcaca * caca: color ASCII art video output using libcaca
* cache_block: block stream caching stream filter
* cache_read: byte stream caching stream filter * cache_read: byte stream caching stream filter
* caf: CAF demuxer * caf: CAF demuxer
* canvas: Automatically resize and padd a video * canvas: Automatically resize and padd a video
......
...@@ -5,6 +5,9 @@ stream_filter_LTLIBRARIES = ...@@ -5,6 +5,9 @@ stream_filter_LTLIBRARIES =
libcache_read_plugin_la_SOURCES = stream_filter/cache_read.c libcache_read_plugin_la_SOURCES = stream_filter/cache_read.c
stream_filter_LTLIBRARIES += libcache_read_plugin.la stream_filter_LTLIBRARIES += libcache_read_plugin.la
libcache_block_plugin_la_SOURCES = stream_filter/cache_block.c
stream_filter_LTLIBRARIES += libcache_block_plugin.la
libdecomp_plugin_la_SOURCES = stream_filter/decomp.c libdecomp_plugin_la_SOURCES = stream_filter/decomp.c
libdecomp_plugin_la_LIBADD = $(LIBPTHREAD) libdecomp_plugin_la_LIBADD = $(LIBPTHREAD)
if !HAVE_WIN32 if !HAVE_WIN32
......
This diff is collapsed.
...@@ -1033,6 +1033,7 @@ modules/services_discovery/upnp.cpp ...@@ -1033,6 +1033,7 @@ modules/services_discovery/upnp.cpp
modules/services_discovery/windrive.c modules/services_discovery/windrive.c
modules/services_discovery/xcb_apps.c modules/services_discovery/xcb_apps.c
modules/stream_filter/aribcam.c modules/stream_filter/aribcam.c
modules/stream_filter/cache_block.c
modules/stream_filter/cache_read.c modules/stream_filter/cache_read.c
modules/stream_filter/decomp.c modules/stream_filter/decomp.c
modules/stream_filter/hds/hds.c modules/stream_filter/hds/hds.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