view playtreeparser.h @ 4723:93e959f0a6e4

Fixed bug which would cause gibberish to be printed when using :noprebuf Removed equalization code, it caused problems with older machines, until someone with a fast machine can betatest it it's only worthless
author mswitch
date Sat, 16 Feb 2002 12:51:33 +0000
parents d752f99fd535
children 4b728967bd77
line wrap: on
line source


#ifndef __PLAYTREEPARSER_H
#define __PLAYTREEPARSER_H

#include "playtree.h"
#include "libmpdemux/stream.h"

typedef struct play_tree_parser {
  stream_t* stream;
  char* buffer;
  int buffer_size , buffer_end;
  int deep;
} play_tree_parser_t;


play_tree_parser_t*
play_tree_parser_new(stream_t* 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);

#endif