Revert "update audio streamtype"

This reverts commit b95524d059.


Origin commit data
------------------
Branch: master
Commit: b4c9228ff6
Author: TangoCash <eric@loxat.de>
Date: 2018-10-06 (Sat, 06 Oct 2018)



------------------
This commit was generated by Migit
This commit is contained in:
TangoCash
2018-10-06 18:53:49 +02:00
parent 47c1b0b58c
commit b52f7380ab
2 changed files with 45 additions and 41 deletions

View File

@@ -20,21 +20,20 @@ typedef enum {
typedef enum
{
AUDIO_FMT_UNKNOWN = -1,
AUDIO_FMT_DOLBY_DIGITAL = 0,
AUDIO_FMT_MPEG = 1,
AUDIO_FMT_DTS = 2,
AUDIO_FMT_LPCM = 6,
AUDIO_FMT_AAC = 8,
AUDIO_FMT_AAC_HE = 9,
AUDIO_FMT_MP3 = 0xa,
AUDIO_FMT_AAC_PLUS = 0xb,
AUDIO_FMT_DTS_HD = 0x10,
AUDIO_FMT_WMA = 0x20,
AUDIO_FMT_WMA_PRO = 0x21,
AUDIO_FMT_DD_PLUS = 0x22,
AUDIO_FMT_AMR = 0x23,
AUDIO_FMT_RAW = 0xf
AUDIO_FMT_AUTO = 0,
AUDIO_FMT_MPEG,
AUDIO_FMT_MP3,
AUDIO_FMT_DOLBY_DIGITAL,
AUDIO_FMT_BASIC = AUDIO_FMT_DOLBY_DIGITAL,
AUDIO_FMT_AAC,
AUDIO_FMT_AAC_PLUS,
AUDIO_FMT_DD_PLUS,
AUDIO_FMT_DTS,
AUDIO_FMT_AVS,
AUDIO_FMT_MLP,
AUDIO_FMT_WMA,
AUDIO_FMT_MPG1, // TD only. For Movieplayer / cPlayback
AUDIO_FMT_ADVANCED = AUDIO_FMT_MLP
} AUDIO_FORMAT;
class mixerVolume;