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

Origin commit data
------------------
Branch: master
Commit: b8ad6fe246
Author: martii <m4rtii@gmx.de>
Date: 2013-06-13 (Thu, 13 Jun 2013)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
martii
2013-06-13 20:58:08 +02:00
parent f1c04c5e3a
commit 100507f6cf
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
};