Mercurial > mplayer.hg
view playtreeparser.h @ 6577:aad616b63bed
fixing scaling/contrast for 1/4/8 bpp
exporting yuv2rgb_c_init() as the swscaler will use it (avoids code duplication)
author | michael |
---|---|
date | Thu, 27 Jun 2002 17:40:51 +0000 |
parents | 4b728967bd77 |
children | 487cfc28525d |
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,*iter,*line; int buffer_size , buffer_end; int deep,keep; } 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