]> git.sesse.net Git - ffmpeg/blobdiff - cmdutils.h
Remove gcc import libraries from Win32 builds.
[ffmpeg] / cmdutils.h
index eb94058888ec066ae2025ee7dbebfa9bfb2412b3..36734efd5e4d44385bb6260a254a4a34520c8b9d 100644 (file)
@@ -19,8 +19,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
-#ifndef _CMD_UTILS_H
-#define _CMD_UTILS_H
+#ifndef CMD_UTILS_H
+#define CMD_UTILS_H
 
 typedef struct {
     const char *name;
@@ -64,4 +64,27 @@ void parse_options(int argc, char **argv, const OptionDef *options,
 
 void print_error(const char *filename, int err);
 
-#endif /* _CMD_UTILS_H */
+/**
+ * Prints the banner of the program on stderr. The banner message
+ * depends on the current versions of the repository and of the libav*
+ * libraries.
+ * @param program_name Name of the program.
+ * @param program_birth_year Year of birth of the program.
+ */
+void show_banner(const char *program_name, int program_birth_year);
+
+/**
+ * Prints the version of the program on stdout. The version message
+ * depends on the current versions of the repository and of the libav*
+ * libraries.
+ * @param program_name Name of the program.
+ */
+void show_version(const char *program_name);
+
+/**
+ * Prints on stdout the license of the program, which depends on the license of
+ * the compiled libav* libraries.
+ */
+void show_license(void);
+
+#endif /* CMD_UTILS_H */