| 
									
										
										
										
											2003-06-07 18:34:02 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Various utilities for command line tools | 
					
						
							|  |  |  |  * Copyright (c) 2000-2003 Fabrice Bellard | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * This file is part of FFmpeg. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * FFmpeg is free software; you can redistribute it and/or | 
					
						
							| 
									
										
										
										
											2003-06-07 18:34:02 +00:00
										 |  |  |  * modify it under the terms of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License as published by the Free Software Foundation; either | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * version 2.1 of the License, or (at your option) any later version. | 
					
						
							| 
									
										
										
										
											2003-06-07 18:34:02 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * FFmpeg is distributed in the hope that it will be useful, | 
					
						
							| 
									
										
										
										
											2003-06-07 18:34:02 +00:00
										 |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
					
						
							|  |  |  |  * Lesser General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Lesser General Public | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * License along with FFmpeg; if not, write to the Free Software | 
					
						
							| 
									
										
										
										
											2006-01-12 22:43:26 +00:00
										 |  |  |  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | 
					
						
							| 
									
										
										
										
											2003-06-07 18:34:02 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2007-06-10 14:34:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-02 07:43:23 +00:00
										 |  |  | #include <string.h>
 | 
					
						
							|  |  |  | #include <stdlib.h>
 | 
					
						
							|  |  |  | #include <errno.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-06-07 18:34:02 +00:00
										 |  |  | #include "avformat.h"
 | 
					
						
							|  |  |  | #include "cmdutils.h"
 | 
					
						
							| 
									
										
										
										
											2007-06-24 11:27:12 +00:00
										 |  |  | #include "avstring.h"
 | 
					
						
							| 
									
										
										
										
											2003-06-07 18:34:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-27 21:47:03 +00:00
										 |  |  | #undef exit
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-08-24 15:29:48 +00:00
										 |  |  | void show_help_options(const OptionDef *options, const char *msg, int mask, int value) | 
					
						
							| 
									
										
										
										
											2003-06-07 18:34:02 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     const OptionDef *po; | 
					
						
							| 
									
										
										
										
											2003-08-24 15:29:48 +00:00
										 |  |  |     int first; | 
					
						
							| 
									
										
										
										
											2003-06-07 18:34:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-08-24 15:29:48 +00:00
										 |  |  |     first = 1; | 
					
						
							|  |  |  |     for(po = options; po->name != NULL; po++) { | 
					
						
							|  |  |  |         char buf[64]; | 
					
						
							|  |  |  |         if ((po->flags & mask) == value) { | 
					
						
							|  |  |  |             if (first) { | 
					
						
							|  |  |  |                 printf("%s", msg); | 
					
						
							|  |  |  |                 first = 0; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2007-06-24 11:27:12 +00:00
										 |  |  |             av_strlcpy(buf, po->name, sizeof(buf)); | 
					
						
							| 
									
										
										
										
											2003-08-24 15:29:48 +00:00
										 |  |  |             if (po->flags & HAS_ARG) { | 
					
						
							| 
									
										
										
										
											2007-06-24 11:27:12 +00:00
										 |  |  |                 av_strlcat(buf, " ", sizeof(buf)); | 
					
						
							|  |  |  |                 av_strlcat(buf, po->argname, sizeof(buf)); | 
					
						
							| 
									
										
										
										
											2003-06-07 18:34:02 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2003-08-24 15:29:48 +00:00
										 |  |  |             printf("-%-17s  %s\n", buf, po->help); | 
					
						
							| 
									
										
										
										
											2003-06-07 18:34:02 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-12 01:51:38 +00:00
										 |  |  | static const OptionDef* find_option(const OptionDef *po, const char *name){ | 
					
						
							| 
									
										
										
										
											2005-09-11 11:10:25 +00:00
										 |  |  |     while (po->name != NULL) { | 
					
						
							|  |  |  |         if (!strcmp(name, po->name)) | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         po++; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return po; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-06-07 18:34:02 +00:00
										 |  |  | void parse_options(int argc, char **argv, const OptionDef *options) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     const char *opt, *arg; | 
					
						
							| 
									
										
										
										
											2006-11-27 15:48:16 +00:00
										 |  |  |     int optindex, handleoptions=1; | 
					
						
							| 
									
										
										
										
											2003-06-07 18:34:02 +00:00
										 |  |  |     const OptionDef *po; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* parse options */ | 
					
						
							|  |  |  |     optindex = 1; | 
					
						
							|  |  |  |     while (optindex < argc) { | 
					
						
							|  |  |  |         opt = argv[optindex++]; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-11-27 12:37:43 +00:00
										 |  |  |         if (handleoptions && opt[0] == '-' && opt[1] != '\0') { | 
					
						
							|  |  |  |           if (opt[1] == '-' && opt[2] == '\0') { | 
					
						
							|  |  |  |             handleoptions = 0; | 
					
						
							|  |  |  |             continue; | 
					
						
							|  |  |  |           } | 
					
						
							| 
									
										
										
										
											2005-09-11 11:10:25 +00:00
										 |  |  |             po= find_option(options, opt + 1); | 
					
						
							|  |  |  |             if (!po->name) | 
					
						
							|  |  |  |                 po= find_option(options, "default"); | 
					
						
							| 
									
										
										
										
											2003-06-07 18:34:02 +00:00
										 |  |  |             if (!po->name) { | 
					
						
							| 
									
										
										
										
											2005-09-11 11:10:25 +00:00
										 |  |  | unknown_opt: | 
					
						
							| 
									
										
										
										
											2003-06-07 18:34:02 +00:00
										 |  |  |                 fprintf(stderr, "%s: unrecognized option '%s'\n", argv[0], opt); | 
					
						
							|  |  |  |                 exit(1); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             arg = NULL; | 
					
						
							|  |  |  |             if (po->flags & HAS_ARG) { | 
					
						
							|  |  |  |                 arg = argv[optindex++]; | 
					
						
							|  |  |  |                 if (!arg) { | 
					
						
							|  |  |  |                     fprintf(stderr, "%s: missing argument for option '%s'\n", argv[0], opt); | 
					
						
							|  |  |  |                     exit(1); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if (po->flags & OPT_STRING) { | 
					
						
							|  |  |  |                 char *str; | 
					
						
							| 
									
										
										
										
											2003-08-24 15:29:48 +00:00
										 |  |  |                 str = av_strdup(arg); | 
					
						
							| 
									
										
										
										
											2003-06-07 18:34:02 +00:00
										 |  |  |                 *po->u.str_arg = str; | 
					
						
							|  |  |  |             } else if (po->flags & OPT_BOOL) { | 
					
						
							|  |  |  |                 *po->u.int_arg = 1; | 
					
						
							| 
									
										
										
										
											2004-04-30 13:41:48 +00:00
										 |  |  |             } else if (po->flags & OPT_INT) { | 
					
						
							|  |  |  |                 *po->u.int_arg = atoi(arg); | 
					
						
							| 
									
										
										
										
											2007-03-30 09:43:39 +00:00
										 |  |  |             } else if (po->flags & OPT_INT64) { | 
					
						
							| 
									
										
										
										
											2007-04-13 07:19:12 +00:00
										 |  |  |                 *po->u.int64_arg = strtoll(arg, (char **)NULL, 10); | 
					
						
							| 
									
										
										
										
											2004-10-16 20:30:14 +00:00
										 |  |  |             } else if (po->flags & OPT_FLOAT) { | 
					
						
							|  |  |  |                 *po->u.float_arg = atof(arg); | 
					
						
							| 
									
										
										
										
											2005-09-11 11:10:25 +00:00
										 |  |  |             } else if (po->flags & OPT_FUNC2) { | 
					
						
							|  |  |  |                 if(po->u.func2_arg(opt+1, arg)<0) | 
					
						
							|  |  |  |                     goto unknown_opt; | 
					
						
							| 
									
										
										
										
											2003-06-07 18:34:02 +00:00
										 |  |  |             } else { | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |                 po->u.func_arg(arg); | 
					
						
							| 
									
										
										
										
											2003-06-07 18:34:02 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             parse_arg_file(opt); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void print_error(const char *filename, int err) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     switch(err) { | 
					
						
							|  |  |  |     case AVERROR_NUMEXPECTED: | 
					
						
							|  |  |  |         fprintf(stderr, "%s: Incorrect image filename syntax.\n" | 
					
						
							|  |  |  |                 "Use '%%d' to specify the image number:\n" | 
					
						
							|  |  |  |                 "  for img1.jpg, img2.jpg, ..., use 'img%%d.jpg';\n" | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |                 "  for img001.jpg, img002.jpg, ..., use 'img%%03d.jpg'.\n", | 
					
						
							| 
									
										
										
										
											2003-06-07 18:34:02 +00:00
										 |  |  |                 filename); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case AVERROR_INVALIDDATA: | 
					
						
							|  |  |  |         fprintf(stderr, "%s: Error while parsing header\n", filename); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case AVERROR_NOFMT: | 
					
						
							|  |  |  |         fprintf(stderr, "%s: Unknown format\n", filename); | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2007-07-19 15:23:32 +00:00
										 |  |  |     case AVERROR(EIO): | 
					
						
							| 
									
										
										
										
											2005-01-20 15:31:07 +00:00
										 |  |  |         fprintf(stderr, "%s: I/O error occured\n" | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |                 "Usually that means that input file is truncated and/or corrupted.\n", | 
					
						
							|  |  |  |                 filename); | 
					
						
							| 
									
										
										
										
											2005-01-20 15:31:07 +00:00
										 |  |  |         break; | 
					
						
							| 
									
										
										
										
											2007-07-19 15:21:30 +00:00
										 |  |  |     case AVERROR(ENOMEM): | 
					
						
							| 
									
										
										
										
											2005-01-20 15:31:07 +00:00
										 |  |  |         fprintf(stderr, "%s: memory allocation error occured\n", filename); | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2007-07-19 15:24:58 +00:00
										 |  |  |     case AVERROR(ENOENT): | 
					
						
							| 
									
										
										
										
											2007-05-10 13:25:33 +00:00
										 |  |  |         fprintf(stderr, "%s: no such file or directory\n", filename); | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2003-06-07 18:34:02 +00:00
										 |  |  |     default: | 
					
						
							|  |  |  |         fprintf(stderr, "%s: Error while opening file\n", filename); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |