1 #ifndef MPLAYER_PARSER_MECMD_H
2 #define MPLAYER_PARSER_MECMD_H
7 /// \ingroup ConfigParsers MEntry
8 /// \brief A simple parser with per-entry settings.
10 /// \defgroup MEntry MEncoder's playlist
14 typedef struct m_entry_st
{
15 /// Filename, url or whatever.
17 /// NULL terminated list of name,val pairs.
21 /// Free a list returned by \ref m_config_parse_me_command_line.
23 m_entry_list_free(m_entry_t
* lst
);
25 /// Helper to set all config options from an entry.
27 m_entry_set_options(m_config_t
*config
, m_entry_t
* entry
);
29 /// Setup the \ref Config from command line arguments and build a playlist.
30 /** \ingroup ConfigParsers
33 m_config_parse_me_command_line(m_config_t
*config
, int argc
, char **argv
);
37 #endif /* MPLAYER_PARSER_MECMD_H */