aboutsummaryrefslogtreecommitdiffstats
path: root/dvb-s/AMC2-85w
diff options
context:
space:
mode:
authorChristoph Pfister <pfister@linuxtv.org>2008-02-02 18:10:42 +0100
committerMauro Carvalho Chehab <mchehab@redhat.com>2008-02-02 18:10:42 +0100
commita59c81a583172193c58ab9efd13d73636bee3a01 (patch)
tree69f67c5558b98d95e77032d4c39f2d72446ec50b /dvb-s/AMC2-85w
parent747839116dd2eb2a9e63e7e2549816790589eca0 (diff)
downloaddtv-scan-tables-a59c81a583172193c58ab9efd13d73636bee3a01.tar.gz
update scan file for it-Milano
http://linuxtv.org/pipermail/linux-dvb/2008-January/023310.html
Diffstat (limited to 'dvb-s/AMC2-85w')
0 files changed, 0 insertions, 0 deletions
>70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
/*
 * ESG parser
 *
 * 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
 */

#ifndef _ESG_REPRESENTATION_TEXTUAL_DECODER_INIT_H
#define _ESG_REPRESENTATION_TEXTUAL_DECODER_INIT_H 1

#ifdef __cplusplus
extern "C"
{
#endif

#include <stdint.h>

/**
 * esg_namespace_prefix structure.
 */
struct esg_namespace_prefix {
	uint16_t prefix_string_ptr;
	uint16_t namespace_uri_ptr;

	struct esg_namespace_prefix *_next;
};

/**
 * esg_fragment_type structure.
 */
struct esg_xml_fragment_type {
	uint16_t xpath_ptr;
	uint16_t xml_fragment_type;

	struct esg_xml_fragment_type *_next;
};

/**
 * esg_textual_decoder_init structure.
 */
struct esg_textual_decoder_init {
	uint8_t version;
	uint8_t num_namespace_prefixes;
	struct esg_namespace_prefix *namespace_prefix_list;
	uint8_t num_fragment_types;
	struct esg_xml_fragment_type *xml_fragment_type_list;
};

/**
 * Process an esg_textual_decoder_init.
 *
 * @param buffer Binary buffer to decode.
 * @param size Binary buffer size.
 * @return Pointer to an esg_textual_decoder_init structure, or NULL on error.
 */
extern struct esg_textual_decoder_init *esg_textual_decoder_init_decode(uint8_t *buffer, uint32_t size);

/**
 * Free an esg_textual_decoder_init.
 *
 * @param decoder_init Pointer to an esg_textual_decoder_init structure.
 */
extern void esg_textual_decoder_init_free(struct esg_textual_decoder_init *decoder_init);

/**
 * Convenience iterator for namespace_prefix_list field of an esg_textual_decoder_init.
 *
 * @param decoder_init The esg_textual_decoder_init pointer.
 * @param namespace_prefix Variable holding a pointer to the current esg_namespace_prefix.
 */
#define esg_textual_decoder_namespace_prefix_list_for_each(decoder_init, namespace_prefix) \
	for ((namespace_prefix) = (decoder_init)->namespace_prefix_list; \
	     (namespace_prefix); \
	     (namespace_prefix) = (namespace_prefix)->_next)

/**
 * Convenience iterator for xml_fragment_type_list field of an esg_textual_decoder_init.
 *
 * @param decoder_init The esg_textual_decoder_init pointer.
 * @param xml_fragment_type Variable holding a pointer to the current esg_xml_fragment_type.
 */
#define esg_textual_decoder_xml_fragment_type_list_for_each(decoder_init, xml_fragment_type) \
	for ((xml_fragment_type) = (decoder_init)->xml_fragment_type_list; \
	     (xml_fragment_type); \
	     (xml_fragment_type) = (xml_fragment_type)->_next)

#ifdef __cplusplus
}
#endif

#endif