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)


Origin commit data
------------------
Branch: master
Commit: 09f394fbef
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2012-11-03 (Sat, 03 Nov 2012)

Origin message was:
------------------
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 was generated by Migit
This commit is contained in:
Stefan Seyfried
2012-11-03 17:22:40 +01:00
parent 333463d759
commit 17e75cecd1
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,