diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2010-11-01 15:47:59 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2010-11-01 15:47:59 +0100 |
commit | cfb37a7edf8caafb0f07594b080837231ba9c575 (patch) | |
tree | d92e4c39377e735feec619205d1642730ac0ff62 /libsi/headers.h | |
parent | 4f50c34824f0c717dd52e0ce32497b7f421c1c66 (diff) | |
download | vdr-cfb37a7edf8caafb0f07594b080837231ba9c575.tar.gz vdr-cfb37a7edf8caafb0f07594b080837231ba9c575.tar.bz2 |
Added support for "registration descriptor"
Diffstat (limited to 'libsi/headers.h')
-rw-r--r-- | libsi/headers.h | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/libsi/headers.h b/libsi/headers.h index db1e261e..3ec35def 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.9 2007/02/03 11:45:58 kls Exp $ + * $Id: headers.h 2.1 2010/11/01 15:24:32 kls Exp $ * * ***************************************************************************/ @@ -2006,6 +2006,18 @@ struct item_premiere_content_transmission_time { u_char start_time_s :8; }; +/* 0x05 registration_descriptor */ + +#define DESCR_REGISTRATION_LEN 6 +struct descr_registration { + u_char descriptor_tag :8; + u_char descriptor_length :8; + u_char format_identifier_hi_hi :8; + u_char format_identifier_hi_lo :8; + u_char format_identifier_lo_hi :8; + u_char format_identifier_lo_lo :8; +}; + } //end of namespace #endif //LIBSI_HEADERS_H |