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
parent d2ee743530
commit b2eb2038d7
2 changed files with 15 additions and 1 deletions

View File

@@ -160,3 +160,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
};