root/branches/streaming-rework/libfreebob/xmlparser.h

Revision 153, 1.3 kB (checked in by wagi, 18 years ago)

2006-01-08 Daniel Wagner <wagi@monom.org>

  • libfreebob/freebob.h
    libfreebob/xmlparser.h
    src/avdevice.cpp
    src/xmlparser.c
    tests/test-freebob.c:
    Add stream format info support.
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 /* freebob.h
2  * Copyright (C) 2005 Pieter Palmers
3  *
4  * This file is part of FreeBoB
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19  * MA 02110-1301 USA
20  */
21
22 #ifndef XMLPARSER_H
23 #define XMLPARSER_H
24
25 #include "libfreebob/freebob.h"
26
27 #include <libxml/xmlmemory.h>
28 #include <libxml/parser.h>
29
30 #ifdef __cplusplus
31 extern "C" {
32 #endif
33
34 freebob_connection_info_t*
35 freebob_xmlparse_get_connection_info( xmlDocPtr doc,
36                                       int node_id,
37                                       int direction );
38
39 freebob_supported_stream_format_info_t*
40 freebob_xmlparse_get_stream_formats( xmlDocPtr doc,
41                                      int node_id,
42                                      int direction );
43 #ifdef __cplusplus
44 }
45 #endif
46
47 #endif /* XMLPARSER_H */
Note: See TracBrowser for help on using the browser.