Commit d475c5fd authored by Matthias Keiser's avatar Matthias Keiser Committed by Jean-Baptiste Kempf

Add a new caf file demuxer module

parent 93fba1b5
......@@ -13,6 +13,9 @@ Encoder:
* Support for HEVC/H.265 encoding using x265
* Support for Opus encoding using libopus
Demuxer:
* New CAF format module
Streaming:
* WebM streaming, including live sources, compatible with all major browsers
vlc <your-source> vlc://quit --sout '#transcode{vcodec=VP80,vb=1000,acodec=vorb,ab=128}
......
List of vlc plugins (413)
List of vlc plugins (414)
$Id$
* a52: A/52 basic parser/packetizer
* a52tofloat32: A/52 audio converter & decoder plugin, using liba52
......@@ -55,6 +55,7 @@ $Id$
* bluescreen: Bluescreen (weather channel like) video filter
* bonjour: Zeroconf services discovery
* caca: color ASCII art video output using libcaca
* caf: CAF demuxer
* canvas: Automatically resize and padd a video
* cc: CC 608/708 subtitles decoder
* cdda: input module to read audio CDs
......
......@@ -126,6 +126,10 @@ demux_LTLIBRARIES += libasf_plugin.la
libavi_plugin_la_SOURCES = demux/avi/avi.c demux/avi/libavi.c demux/avi/libavi.h
demux_LTLIBRARIES += libavi_plugin.la
libcaf_plugin_la_SOURCES = demux/caf.c
libcaf_plugin_la_LIBADD = $(LIBM)
demux_LTLIBRARIES += libcaf_plugin.la
libavformat_plugin_la_SOURCES = demux/avformat/demux.c \
codec/avcodec/fourcc.c \
codec/avcodec/chroma.c \
......
This diff is collapsed.
......@@ -441,6 +441,7 @@ modules/demux/avformat/mux.c
modules/demux/avi/avi.c
modules/demux/avi/libavi.c
modules/demux/avi/libavi.h
modules/demux/caf.c
modules/demux/cdg.c
modules/demux/demuxdump.c
modules/demux/dirac.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