Mercurial > mplayer.hg
annotate parser-mecmd.h @ 16347:da2926d990ce
Adds -idle, an option to make MPlayer wait for input ('loadfile' or
'loadlist') commands when it's done playing all files or there are no files
on the command line. When used with -fixed-vo, you get a "frozen" vo
window, but it can still accept input commands from there (clicking 'q'
from the xv window will cause MPlayer to close..)
author | ods15 |
---|---|
date | Fri, 02 Sep 2005 08:44:55 +0000 |
parents | 487cfc28525d |
children | 1a14fde7680d |
rev | line source |
---|---|
8164 | 1 |
2 /// A simple parser with per-entry settings. | |
3 | |
4 typedef struct m_entry_st { | |
5 char* name; // Filename, url or whatever | |
6 char** opts; // NULL terminated list of name,val pairs | |
7 } m_entry_t; | |
8 | |
9 // Free a list returned by m_config_parse_command_line | |
10 void | |
11 m_entry_list_free(m_entry_t* lst); | |
12 // Use this when you switch to another entry | |
13 int | |
14 m_entry_set_options(m_config_t *config, m_entry_t* entry); | |
15 | |
16 m_entry_t* | |
17 m_config_parse_me_command_line(m_config_t *config, int argc, char **argv); | |
18 |