|
Lines 220-225
Link Here
|
| 220 |
av_close_input_file(ic); |
220 |
av_close_input_file(ic); |
| 221 |
} |
221 |
} |
| 222 |
|
222 |
|
|
|
223 |
static void |
| 224 |
help() |
| 225 |
{ |
| 226 |
|
| 227 |
(void)fprintf(stderr, "usage: [args] file1 file2 ...\n\n"); |
| 228 |
(void)fprintf(stderr, "arguments:\n"); |
| 229 |
(void)fprintf(stderr, "\t-q\tbe quiet (don't print title) [default: off]\n"); |
| 230 |
(void)fprintf(stderr, "\t-h\tprint this text\n"); |
| 231 |
(void)fprintf(stderr,"\t-a <dev>\t-use device <dev> for audio output [default: /dev/dsp0]\n"); |
| 232 |
exit(0); |
| 233 |
} |
| 234 |
|
| 223 |
int main(int argc, char *argv[]) |
235 |
int main(int argc, char *argv[]) |
| 224 |
{ |
236 |
{ |
| 225 |
char **playlist_array; |
237 |
char **playlist_array; |
|
Lines 296-311
Link Here
|
| 296 |
(void)fprintf(stderr, "usage: wma123 [-hq] [-a device] file1 file2 ...\n"); |
308 |
(void)fprintf(stderr, "usage: wma123 [-hq] [-a device] file1 file2 ...\n"); |
| 297 |
exit(0); |
309 |
exit(0); |
| 298 |
} |
310 |
} |
| 299 |
|
|
|
| 300 |
static void |
| 301 |
help() |
| 302 |
{ |
| 303 |
|
| 304 |
(void)fprintf(stderr, "usage: [args] file1 file2 ...\n\n"); |
| 305 |
(void)fprintf(stderr, "arguments:\n"); |
| 306 |
(void)fprintf(stderr, "\t-q\tbe quiet (don't print title) [default: off]\n"); |
| 307 |
(void)fprintf(stderr, "\t-h\tprint this text\n"); |
| 308 |
(void)fprintf(stderr,"\t-a <dev>\t-use device <dev> for audio output [default: /dev/dsp0]\n"); |
| 309 |
exit(0); |
| 310 |
} |
| 311 |
|
311 |
|