aboutsummaryrefslogtreecommitdiffstats
path: root/util/scan/dvb-t/es-Malaga
diff options
context:
space:
mode:
authorMark Purcell <msp@debian.org>2009-05-03 20:16:46 +1000
committeretobi <git@e-tobi.net>2013-09-03 09:48:45 +0200
commit109c7947d6a11a2a54eff1b19615ed80ea2f0602 (patch)
tree5708ced3485e2a6e021ff159a56f22374c8feecc /util/scan/dvb-t/es-Malaga
parenta535707334f245ca1b14570e941a7524c7ca09d7 (diff)
parent9a5228e0f2b898367b7943d294be58caf6ce8bb3 (diff)
downloadlinux-dvb-apps-109c7947d6a11a2a54eff1b19615ed80ea2f0602.tar.gz
Imported Debian patch 1.1.1+rev1273-1debian/1.1.1+rev1273-1
Diffstat (limited to '')
-rw-r--r--util/scan/dvb-t/es-Malaga12
1 files changed, 6 insertions, 6 deletions
diff --git a/util/scan/dvb-t/es-Malaga b/util/scan/dvb-t/es-Malaga
index 7da1610..290e186 100644
--- a/util/scan/dvb-t/es-Malaga
+++ b/util/scan/dvb-t/es-Malaga
@@ -1,9 +1,9 @@
# DVB-T Malaga (Andalucia) by Pedro Leon 4 Mayo 2007
# T freq bw fec_hi fec_lo mod transm-mode guard-interval hierarchy
-T 762000000 8MHz 2/3 1/2 QAM64 8k 1/4 NONE # C57 La Primera, La 2, Canal 24H, Clan/TVE 50, RNE1, RNE Clásica, RNE 3
-T 810000000 8MHz 2/3 1/2 QAM64 8k 1/4 NONE # C63 Canal Sur, Canal 2 Andalucia
-T 834000000 8MHz 2/3 1/2 QAM64 8k 1/4 NONE # C66 TELEDEPORTE, VEO, *Canal Ingenieria, SETenVEO, Tienda en VEO, NET TV, Radio Intereconomia
-T 842000000 8MHz 2/3 1/2 QAM64 8k 1/4 NONE # C67 CUATRO, CNN+, 40 LATINO, laSexta
-T 850000000 8MHz 2/3 1/2 QAM64 8k 1/4 NONE # C68 Telecinco, T5 Estrellas, T5 Sport, FLYMUSIC, PUNTO RADIO
-T 858000000 8MHz 2/3 1/2 QAM64 8k 1/4 NONE # C69 ANTENA 3, ANTENA.NEOX, ANTENA.NOVA, *tvtv DIGITAL, ONDA CERO, EUROPA FM, ONDA MELODIA, Telehit
+T 762000000 8MHz 2/3 NONE QAM64 8k 1/4 NONE # C57 La Primera, La 2, Canal 24H, Clan/TVE 50, RNE1, RNE Clásica, RNE 3
+T 810000000 8MHz 2/3 NONE QAM64 8k 1/4 NONE # C63 Canal Sur, Canal 2 Andalucia
+T 834000000 8MHz 2/3 NONE QAM64 8k 1/4 NONE # C66 TELEDEPORTE, VEO, *Canal Ingenieria, SETenVEO, Tienda en VEO, NET TV, Radio Intereconomia
+T 842000000 8MHz 2/3 NONE QAM64 8k 1/4 NONE # C67 CUATRO, CNN+, 40 LATINO, laSexta
+T 850000000 8MHz 2/3 NONE QAM64 8k 1/4 NONE # C68 Telecinco, T5 Estrellas, T5 Sport, FLYMUSIC, PUNTO RADIO
+T 858000000 8MHz 2/3 NONE QAM64 8k 1/4 NONE # C69 ANTENA 3, ANTENA.NEOX, ANTENA.NOVA, *tvtv DIGITAL, ONDA CERO, EUROPA FM, ONDA MELODIA, Telehit
# * Canales de datos o MHT
m"> * Copyright (C) 2006 Stephane Este-Gracias (sestegra@free.fr) * * 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 */ #include <stdlib.h> #include <string.h> #include <libesg/bootstrap/provider_discovery_descriptor.h> struct esg_provider_discovery_descriptor *esg_esg_provider_discovery_descriptor_decode(uint8_t *buffer, uint32_t size) { struct esg_provider_discovery_descriptor *provider; provider = (struct esg_provider_discovery_descriptor *) malloc(sizeof(struct esg_provider_discovery_descriptor)); memset(provider, 0, sizeof(struct esg_provider_discovery_descriptor)); provider->xml = (uint8_t *) malloc(size); memcpy(provider->xml, buffer, size); provider->size = size; return provider; } void esg_provider_discovery_descriptor_free(struct esg_provider_discovery_descriptor *provider) { if (provider == NULL) { return; } if (provider->xml) { free(provider->xml); } free(provider); }