8164
|
1
|
18265
|
2 /// \file
|
|
3 /// \ingroup ConfigParsers MEntry
|
|
4 /// \brief A simple parser with per-entry settings.
|
8164
|
5
|
18265
|
6 /// \defgroup MEntry MEncoder's playlist
|
|
7 ///@{
|
|
8
|
|
9 /// Playlist entry
|
8164
|
10 typedef struct m_entry_st {
|
18265
|
11 /// Filename, url or whatever.
|
|
12 char* name;
|
|
13 /// NULL terminated list of name,val pairs.
|
|
14 char** opts;
|
8164
|
15 } m_entry_t;
|
|
16
|
18265
|
17 /// Free a list returned by \ref m_config_parse_me_command_line.
|
8164
|
18 void
|
|
19 m_entry_list_free(m_entry_t* lst);
|
18265
|
20
|
|
21 /// Helper to set all config options from an entry.
|
8164
|
22 int
|
|
23 m_entry_set_options(m_config_t *config, m_entry_t* entry);
|
|
24
|
18265
|
25 /// Setup the \ref Config from command line arguments and build a playlist.
|
|
26 /** \ingroup ConfigParsers
|
|
27 */
|
8164
|
28 m_entry_t*
|
|
29 m_config_parse_me_command_line(m_config_t *config, int argc, char **argv);
|
|
30
|
18265
|
31 ///@}
|