view playtreeparser.h @ 17650:d6e575c86bb8

Allows the LIVE555 library to forces the client's port to be used when reading from an RTP/RTSP source. Patch from Benjamin Zores <ben@geexbox.org> and Patrick Labatut <plabatut@gmail.com>
author bertrand
date Sun, 19 Feb 2006 13:27:27 +0000
parents 4bc481804519
children 1a14fde7680d
line wrap: on
line source


#ifndef __PLAYTREEPARSER_H
#define __PLAYTREEPARSER_H

struct stream_st;

typedef struct play_tree_parser {
  struct stream_st* stream;
  char *buffer,*iter,*line;
  int buffer_size , buffer_end;
  int deep,keep;
} play_tree_parser_t;


play_tree_parser_t*
play_tree_parser_new(struct stream_st* stream,int deep);

void
play_tree_parser_free(play_tree_parser_t* p);

play_tree_t*
play_tree_parser_get_play_tree(play_tree_parser_t* p, int forced);

void
play_tree_add_bpf(play_tree_t* pt, char* filename);

#endif