diff options
author | Johns <johns98@gmx.net> | 2012-03-03 18:47:07 +0100 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2012-03-03 18:47:07 +0100 |
commit | 74a62e3649153a5633dbd502e435c77037cd4db3 (patch) | |
tree | 9b36c30e7fbcf03e7e3d326e09e55df4c58dd913 /softhddev.c | |
parent | 7e1a42f7ed28d77888f7a9eba541f729697ad5f6 (diff) | |
download | vdr-plugin-softhddevice-0.4.9.tar.gz vdr-plugin-softhddevice-0.4.9.tar.bz2 |
Makes audio ts parser default. Suspend fixes.0.4.9
Diffstat (limited to 'softhddev.c')
-rw-r--r-- | softhddev.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/softhddev.c b/softhddev.c index 232ab0d..119a96a 100644 --- a/softhddev.c +++ b/softhddev.c @@ -348,7 +348,7 @@ static int Ac3Check(const uint8_t * data, int size) return 0; } -#ifdef USE_TS_AUDIO +#ifndef NO_TS_AUDIO ////////////////////////////////////////////////////////////////////////////// // PES Demux @@ -1058,7 +1058,7 @@ int PlayAudio(const uint8_t * data, int size, uint8_t id) return size; } -#ifdef USE_TS_AUDIO +#ifndef NO_TS_AUDIO /** ** Play transport stream audio packet. @@ -2369,7 +2369,7 @@ int Start(void) } pthread_mutex_init(&SuspendLockMutex, NULL); -#ifdef USE_TS_AUDIO +#ifndef NO_TS_AUDIO PesInit(PesDemuxAudio); #endif Info(_("[softhddev] ready%s\n"), ConfigStartSuspended ? " suspended" : ""); |