libeplayer3: the mp3 handler can easily take care of vorbis data, too.

This commit is contained in:
martii
2013-06-13 20:58:08 +02:00
committed by Stefan Seyfried
parent 8e64b9c7b1
commit 0a386a264d
2 changed files with 15 additions and 1 deletions

View File

@@ -161,3 +161,17 @@ struct Writer_s WriterAudioMPEGL3 = {
NULL,
&caps_mpegl3
};
static WriterCaps_t caps_vorbis = {
"vorbis",
eAudio,
"A_VORBIS",
AUDIO_ENCODING_VORBIS
};
struct Writer_s WriterAudioVORBIS = {
&reset,
&writeData,
NULL,
&caps_vorbis
};