libeplayer3: sync with tdt git commit 06fe782fd6

This ports this commit:
    Author: Matthias <matthias@Build-VM.(none)>
    Date:   Fri Oct 26 19:54:46 2012 +0200

        [libeplayer3] enable wav payback (16 bit le)
This commit is contained in:
Stefan Seyfried
2012-11-03 17:22:40 +01:00
parent 0e96784ad9
commit 09f394fbef
3 changed files with 44 additions and 3 deletions

View File

@@ -55,6 +55,7 @@ typedef struct Track_s {
/* If player2 or the elf do not support decoding of audio codec set this.
* AVCodec is than used for softdecoding and stream will be injected as PCM */
int inject_as_pcm;
int inject_raw_pcm;
} Track_t;
typedef struct Manager_s {

View File

@@ -53,6 +53,7 @@ typedef struct Writer_s {
} Writer_t;
extern Writer_t WriterAudioIPCM;
extern Writer_t WriterAudioPCM;
extern Writer_t WriterAudioMP3;
extern Writer_t WriterAudioMPEGL3;
extern Writer_t WriterAudioAC3;
@@ -76,6 +77,7 @@ extern Writer_t WriterFramebuffer;
static Writer_t * AvailableWriter[] = {
&WriterAudioIPCM,
&WriterAudioPCM,
&WriterAudioMP3,
&WriterAudioMPEGL3,
&WriterAudioAC3,