3 /// \ingroup ConfigParsers MEntry
4 /// \brief A simple parser with per-entry settings.
6 /// \defgroup MEntry MEncoder's playlist
10 typedef struct m_entry_st
{
11 /// Filename, url or whatever.
13 /// NULL terminated list of name,val pairs.
17 /// Free a list returned by \ref m_config_parse_me_command_line.
19 m_entry_list_free(m_entry_t
* lst
);
21 /// Helper to set all config options from an entry.
23 m_entry_set_options(m_config_t
*config
, m_entry_t
* entry
);
25 /// Setup the \ref Config from command line arguments and build a playlist.
26 /** \ingroup ConfigParsers
29 m_config_parse_me_command_line(m_config_t
*config
, int argc
, char **argv
);