mirror of
https://github.com/tuxbox-neutrino/libstb-hal.git
synced 2025-08-26 23:13:16 +02:00
libeplayer3: the mp3 handler can easily take care of vorbis data, too.
This commit is contained in:
@@ -15,7 +15,7 @@ libeplayer3_la_SOURCES = \
|
|||||||
output/writer/ac3.c output/writer/divx.c output/writer/wma.c output/writer/pes.c \
|
output/writer/ac3.c output/writer/divx.c output/writer/wma.c output/writer/pes.c \
|
||||||
output/writer/dts.c output/writer/mpeg2.c output/writer/mp3.c output/writer/misc.c \
|
output/writer/dts.c output/writer/mpeg2.c output/writer/mp3.c output/writer/misc.c \
|
||||||
output/writer/h264.c output/writer/h263.c output/writer/vc1.c output/writer/framebuffer.c \
|
output/writer/h264.c output/writer/h263.c output/writer/vc1.c output/writer/framebuffer.c \
|
||||||
output/writer/vorbis.c output/writer/flac.c output/writer/pcm.c
|
output/writer/flac.c output/writer/pcm.c
|
||||||
|
|
||||||
AM_CFLAGS = -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE
|
AM_CFLAGS = -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE
|
||||||
|
|
||||||
|
@@ -160,3 +160,17 @@ struct Writer_s WriterAudioMPEGL3 = {
|
|||||||
NULL,
|
NULL,
|
||||||
&caps_mpegl3
|
&caps_mpegl3
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static WriterCaps_t caps_vorbis = {
|
||||||
|
"vorbis",
|
||||||
|
eAudio,
|
||||||
|
"A_VORBIS",
|
||||||
|
AUDIO_ENCODING_VORBIS
|
||||||
|
};
|
||||||
|
|
||||||
|
struct Writer_s WriterAudioVORBIS = {
|
||||||
|
&reset,
|
||||||
|
&writeData,
|
||||||
|
NULL,
|
||||||
|
&caps_vorbis
|
||||||
|
};
|
||||||
|
Reference in New Issue
Block a user