diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2011-06-15 21:29:03 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2011-06-15 21:29:03 +0200 |
commit | b2812b7e71b4b5ef038045f48a5697a4dd063192 (patch) | |
tree | 45c010b361471355f873974cb60960f64d7906d8 /libsi/headers.h | |
parent | 263dc295089a2accc385c87c23b177314d65acea (diff) | |
download | vdr-b2812b7e71b4b5ef038045f48a5697a4dd063192.tar.gz vdr-b2812b7e71b4b5ef038045f48a5697a4dd063192.tar.bz2 |
Added support for "content identifier descriptor" and "default authority descriptor" to 'libsi'
Diffstat (limited to 'libsi/headers.h')
-rw-r--r-- | libsi/headers.h | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/libsi/headers.h b/libsi/headers.h index 3ec35def..6867d2c9 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 2.1 2010/11/01 15:24:32 kls Exp $ + * $Id: headers.h 2.2 2011/06/15 21:26:00 kls Exp $ * * ***************************************************************************/ @@ -1680,6 +1680,24 @@ struct descr_content_identifier { u_char descriptor_length :8; }; +struct content_identifier_entry { +#if BYTE_ORDER == BIG_ENDIAN + u_char crid_type :6; + u_char crid_location :2; +#else + u_char crid_location :2; + u_char crid_type :6; +#endif + union { + u_char crid_length :8; + u_char crid_ref_hi :8; + }; + union { + u_char crid_byte :8; + u_char crid_ref_lo :8; + }; +}; + /* 0x77 time_slice_fec_identifier_descriptor (ETSI EN 301 192) */ struct descr_time_slice_fec_identifier { |