/* * section and descriptor parser * * Copyright (C) 2005 Kenneth Aafloy (kenneth@linuxtv.org) * Copyright (C) 2005 Andrew de Quincey (adq_dvb@lidskialf.net) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */ #ifndef _UCSI_DVB_DESCRIPTOR_H #define _UCSI_DVB_DESCRIPTOR_H 1 #ifdef __cplusplus extern "C" { #endif #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include /** * The following are disabled because support is incomplete just now. */ /* #include #include #include #include #include #include #include */ /** * The following are not implemented just now */ /* #include #include #include #include #include #include #include #include #include */ /** * Enumeration of DVB descriptor tags. */ enum dvb_descriptor_tag { dtag_dvb_network_name = 0x40, dtag_dvb_service_list = 0x41, dtag_dvb_stuffing = 0x42, dtag_dvb_satellite_delivery_system = 0x43, dtag_dvb_cable_delivery_system = 0x44, dtag_dvb_vbi_data = 0x45, dtag_dvb_vbi_teletext = 0x46, dtag_dvb_bouquet_name = 0x47, dtag_dvb_service = 0x48, dtag_dvb_country_availability = 0x49, dtag_dvb_linkage = 0x4a, dtag_dvb_nvod_reference = 0x4b, dtag_dvb_time_shifted_service = 0x4c, dtag_dvb_short_event = 0x4d, dtag_dvb_extended_event = 0x4e, dtag_dvb_time_shifted_event = 0x4f, dtag_dvb_component = 0x50, dtag_dvb_mosaic = 0x51, dtag_dvb_stream_identifier = 0x52, dtag_dvb_ca_identifier = 0x53, dtag_dvb_content = 0x54, dtag_dvb_parental_rating = 0x55, dtag_dvb_teletext = 0x56, dtag_dvb_telephone = 0x57, dtag_dvb_local_time_offset = 0x58, dtag_dvb_subtitling = 0x59, dtag_dvb_terrestial_delivery_system = 0x5a, dtag_dvb_multilingual_network_name = 0x5b, dtag_dvb_multilingual_bouquet_name = 0x5c, dtag_dvb_multilingual_service_name = 0x5d, dtag_dvb_multilingual_component = 0x5e, dtag_dvb_private_data_specifier = 0x5f, dtag_dvb_service_move = 0x60, dtag_dvb_short_smoothing_buffer = 0x61, dtag_dvb_frequency_list = 0x62, dtag_dvb_partial_transport_stream = 0x63, dtag_dvb_data_broadcast = 0x64, dtag_dvb_scrambling = 0x65, dtag_dvb_data_broadcast_id = 0x66, dtag_dvb_transport_stream = 0x67, dtag_dvb_dsng = 0x68, dtag_dvb_pdc = 0x69, dtag_dvb_ac3 = 0x6a, dtag_dvb_ancillary_data = 0x6b, dtag_dvb_cell_list = 0x6c, dtag_dvb_cell_frequency_link = 0x6d, dtag_dvb_announcement_support = 0x6e, dtag_dvb_application_signalling = 0x6f, dtag_dvb_adaptation_field_data = 0x70, dtag_dvb_service_identifier = 0x71, dtag_dvb_service_availability = 0x72, dtag_dvb_default_authority = 0x73, dtag_dvb_related_content = 0x74, dtag_dvb_tva_id = 0x75, dtag_dvb_content_identifier = 0x76, dtag_dvb_time_slice_fec_identifier = 0x77, dtag_dvb_ecm_repetition_rate = 0x78, dtag_dvb_s2_satellite_delivery_descriptor= 0x79, dtag_dvb_enhanced_ac3_descriptor = 0x7a, dtag_dvb_dts_descriptor = 0x7b, dtag_dvb_aac_descriptor = 0x7c, dtag_dvb_extension_descriptor = 0x7f, /* descriptors which may only appear in an RNT */ dtag_dvb_rnt_rar_over_dvb_stream = 0x40, dtag_dvb_rnt_rar_over_ip = 0x41, dtag_dvb_rnt_rnt_scan = 0x42, /* descriptors which may only appear in an AIT */ dtag_dvb_ait_application = 0x00, dtag_dvb_ait_application_name = 0x01, dtag_dvb_ait_transport_protocol = 0x02, dtag_dvb_ait_dvb_j_application = 0x03, dtag_dvb_ait_dvb_j_application_location = 0x04, dtag_dvb_ait_external_application_authorisation = 0x05, dtag_dvb_ait_dvb_html_application = 0x08, dtag_dvb_ait_dvb_html_application_location = 0x09, dtab_dvb_ait_dvb_html_application_boundary = 0x0a, dtag_dvb_ait_application_icons = 0x0b, dtag_dvb_ait_prefetch = 0x0c, dtag_dvb_ait_dii_location = 0x0d, dtag_dvb_ait_ip_signalling = 0x11, /* descriptors which may only appear in INT */ dtag_dvb_target_ip_address = 0x09, dtag_dvb_target_ipv6_address = 0x0a, dtag_dvb_ip_mac_platform_name = 0x0c, dtag_dvb_ip_mac_platform_provider_name = 0x0d, dtag_dvb_target_ip_slash = 0x0f, dtag_dvb_target_ip_source_slash = 0x10, dtag_dvb_target_ipv6_slash = 0x11, dtag_dvb_target_ipv6_source_slash = 0x12, dtag_dvb_ip_mac_stream_location = 0x13, }; #ifdef __cplusplus } #endif #endif an McCrohan1-7/+0 2012-02-11Move *.docs, *.install and *.examples to -dev.Jonathan McCrohan7-2/+2 2012-02-11Move to single -dev package.Jonathan McCrohan2-14/+12 2012-02-08Update package changelog.Jonathan McCrohan1-1/+1 2012-02-08Partial manual revert of move to libconfig*8.Jonathan McCrohan4-12/+12 2012-02-08Add my name to debian copyright.Jonathan McCrohan1-2/+3 2012-02-08Atomic commit. Rollback to libconfig8 packaging names.Jonathan McCrohan10-8/+8 2012-02-07Rename libconfig9 to libconfig8 to aid release teamJonathan McCrohan1-14/+14 2012-02-07Fix "closes typo"Jonathan McCrohan1-1/+1 2012-02-07Revert "Add symbols"Jonathan McCrohan3-739/+1 2012-02-07Revert "Fix b0rked symbol file."Jonathan McCrohan1-1/+1 2012-02-07Revert "Second attempt"Jonathan McCrohan2-0/+194 2012-01-29Second attemptJonathan McCrohan2-194/+0 2012-01-29Fix b0rked symbol file.Jonathan McCrohan1-1/+1 2012-01-29Add symbolsJonathan McCrohan3-1/+739 2012-01-26add examples properlyJonathan McCrohan1-0/+2 2012-01-26Update changelogJonathan McCrohan1-3/+6 2012-01-26fix typoJonathan McCrohan1-1/+1 2012-01-26fix accidental description changesJonathan McCrohan1-2/+2 2012-01-26more fucking around to please lintianJonathan McCrohan1-5/+2 2012-01-25Linitan fixesJonathan McCrohan2-3/+2 2012-01-25Split out debug packagesJonathan McCrohan2-1/+6 2011-12-31Fix debian/rulesJonathan McCrohan1-1/+1 2011-12-31Remove shlibsJonathan McCrohan1-2/+0 2011-12-31Remove NMU from changelogJonathan McCrohan1-1/+0 2011-12-31Lintian FixesJonathan McCrohan1-2/+4 2011-12-31Remove Makefile patchJonathan McCrohan1-1/+0 2011-12-31Update MakefilesJonathan McCrohan10-248/+8222 2011-12-31Updated makefilesJonathan McCrohan1-0/+1