view playtreeparser.h @ 9103:6c2c74adaebe

mplayer crashes if one tries to use osd menu without having a font installed. The patch to menu.c is one way to fix that. patch by Bj«Órn Sandell <biorn@dce.chalmers.se>
author arpi
date Sun, 26 Jan 2003 16:02:58 +0000
parents 5c15777f1c07
children 4bc481804519
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);

#endif