xspf.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:2k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * Copyright (C) 2006 Daniel Stränger <vlc at schmaller dot de>
  3.  *
  4.  * This program is free software; you can redistribute it and/or modify
  5.  * it under the terms of the GNU General Public License as published by
  6.  * the Free Software Foundation; either version 2 of the License, or
  7.  * (at your option) any later version.
  8.  *
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  17.  *******************************************************************************/
  18. /**
  19.  * file modules/demux/playlist/xspf.h
  20.  * brief XSPF playlist import: prototypes, datatypes, defines
  21.  */
  22. /* defines */
  23. #define FREE_NAME()  free(psz_name);psz_name=NULL;
  24. #define FREE_VALUE() free(psz_value);psz_value=NULL;
  25. #define FREE_ATT()   FREE_NAME();FREE_VALUE()
  26. enum {
  27.     UNKNOWN_CONTENT,
  28.     SIMPLE_CONTENT,
  29.     COMPLEX_CONTENT
  30. };
  31. #define SIMPLE_INTERFACE  (input_item_t    *p_input,
  32.                            const char      *psz_name,
  33.                            char            *psz_value)
  34. #define COMPLEX_INTERFACE (demux_t         *p_demux,
  35.                            input_item_t    *p_input_item,
  36.                            xml_reader_t    *p_xml_reader,
  37.                            const char      *psz_element)
  38. /* prototypes */
  39. static bool parse_playlist_node COMPLEX_INTERFACE;
  40. static bool parse_tracklist_node COMPLEX_INTERFACE;
  41. static bool parse_track_node COMPLEX_INTERFACE;
  42. static bool parse_extension_node COMPLEX_INTERFACE;
  43. static bool parse_extitem_node COMPLEX_INTERFACE;
  44. static bool set_item_info SIMPLE_INTERFACE;
  45. static bool set_option SIMPLE_INTERFACE;
  46. static bool skip_element COMPLEX_INTERFACE;
  47. /* datatypes */
  48. typedef struct
  49. {
  50.     const char *name;
  51.     int type;
  52.     union
  53.     {
  54.         bool (*smpl) SIMPLE_INTERFACE;
  55.         bool (*cmplx) COMPLEX_INTERFACE;
  56.     } pf_handler;
  57. } xml_elem_hnd_t;