Mercurial > mplayer.hg
annotate parser-mecmd.h @ 25308:7fdb9b2b6770
Fix printf format string length modifiers, removes the warnings:
asfinfo.c: In function 'print_wave_header':
asfinfo.c:114: warning: format '%d' expects type 'int', but argument 2 has type 'long int'
asfinfo.c:115: warning: format '%d' expects type 'int', but argument 2 has type 'long int'
asfinfo.c: In function 'print_video_header':
asfinfo.c:140: warning: format '%d' expects type 'int', but argument 2 has type 'long int'
asfinfo.c:141: warning: format '%d' expects type 'int', but argument 2 has type 'long int'
asfinfo.c:142: warning: format '%d' expects type 'int', but argument 2 has type 'long int'
asfinfo.c:145: warning: format '%d' expects type 'int', but argument 2 has type 'long int'
asfinfo.c:146: warning: format '%d' expects type 'int', but argument 2 has type 'long int'
asfinfo.c: In function 'main':
asfinfo.c:174: warning: format '%X' expects type 'unsigned int', but argument 2 has type 'long int'
asfinfo.c:220: warning: format '%d' expects type 'int', but argument 6 has type 'long unsigned int'
author | diego |
---|---|
date | Mon, 10 Dec 2007 13:11:26 +0000 |
parents | 1a14fde7680d |
children | 6ac1ece1f9fe |
rev | line source |
---|---|
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 ///@} |