]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blobdiff - cmdutils.h
Set colorspace for libtheora encoding
[frescor/ffmpeg.git] / cmdutils.h
index e30ea0f9afc13a975eb19bfa9d5973cc09c7d838..efc8d02602d02079d4a976dc7543dfa70e4db214 100644 (file)
@@ -50,6 +50,11 @@ extern struct SwsContext *sws_opts;
  */
 int opt_default(const char *opt, const char *arg);
 
+/**
+ * Sets the libav* libraries log level.
+ */
+int opt_loglevel(const char *opt, const char *arg);
+
 /**
  * Parses a string and returns its corresponding value as a double.
  * Exits from the application if the string cannot be correctly
@@ -73,8 +78,8 @@ double parse_number_or_die(const char *context, const char *numstr, int type, do
  * @param context the context of the value to be set (e.g. the
  * corresponding commandline option name)
  * @param timestr the string to be parsed
- * @param is_duration a flag which tells how to interpret \p timestr, if
- * not zero \p timestr is interpreted as a duration, otherwise as a
+ * @param is_duration a flag which tells how to interpret timestr, if
+ * not zero timestr is interpreted as a duration, otherwise as a
  * date
  *
  * @see parse_date()
@@ -152,6 +157,24 @@ void show_license(void);
  */
 void show_formats(void);
 
+/**
+ * Prints a listing containing all the codecs supported by the
+ * program.
+ */
+void show_codecs(void);
+
+/**
+ * Prints a listing containing all the bit stream filters supported by the
+ * program.
+ */
+void show_bsfs(void);
+
+/**
+ * Prints a listing containing all the protocols supported by the
+ * program.
+ */
+void show_protocols(void);
+
 /**
  * Returns a positive value if reads from standard input a line
  * starting with [yY], otherwise returns 0.