diff options
author | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2006-09-03 18:00:00 +0200 |
---|---|---|
committer | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2006-09-03 18:00:00 +0200 |
commit | c49ca5abb73cbc11447da5d961e106025dc927d0 (patch) | |
tree | 4faaa7168a60d1b4d4b468691bd7836263604248 /libsi/headers.h | |
parent | 6d6df2fddd6da0ccc9fe9a9aa5526306e9db73d7 (diff) | |
download | vdr-patch-lnbsharing-c49ca5abb73cbc11447da5d961e106025dc927d0.tar.gz vdr-patch-lnbsharing-c49ca5abb73cbc11447da5d961e106025dc927d0.tar.bz2 |
Version 1.4.2-1vdr-1.4.2-1
- Added LC_ALL to the checks for UTF-8 at startup (suggested by Matthias Schwarzott).
- Fixed the cTimer::operator=() so that it won't mess up the cListObject's pointers
(reported by Alexander Rieger).
- Fixed a memory leak in the cTimer::operator=() when using the 'aux' string
(reported by Alexander Rieger).
- Fixed processing the PDCDescriptor in 'libsi' on big endian systems (thanks to
Martin Ostermann).
- Fixed handling relative volume settings that unmute the audio in the call to
cStatus::MsgSetVolume() (reported by Oliver Endriss).
Diffstat (limited to 'libsi/headers.h')
-rw-r--r-- | libsi/headers.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/libsi/headers.h b/libsi/headers.h index afa3106..ea7824b 100644 --- a/libsi/headers.h +++ b/libsi/headers.h @@ -10,7 +10,7 @@ * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * - * $Id: headers.h 1.7 2006/05/28 14:25:30 kls Exp $ + * $Id: headers.h 1.8 2006/09/02 20:25:16 kls Exp $ * * ***************************************************************************/ @@ -1534,15 +1534,9 @@ struct descr_dsng { struct descr_pdc { u_char descriptor_tag :8; u_char descriptor_length :8; -#if BYTE_ORDER == BIG_ENDIAN - u_char pil2 :8; - u_char pil1 :8; - u_char pil0 :8; -#else u_char pil0 :8; u_char pil1 :8; u_char pil2 :8; -#endif }; /* 0x6A ac3_descriptor */ |