]> git.sesse.net Git - ffmpeg/blobdiff - cmdutils.h
#include just the required stdint.h instead of libavutil/common.h.
[ffmpeg] / cmdutils.h
index beba333236e22c14885e0b53171f74d9a74f8241..826f00092f4f9b744c7f9e31f0477b531fb1bc07 100644 (file)
@@ -37,17 +37,24 @@ extern const char program_name[];
  */
 extern const int program_birth_year;
 
+extern const int this_year;
+
 extern const char **opt_names;
-extern AVCodecContext *avctx_opts[CODEC_TYPE_NB];
+extern AVCodecContext *avcodec_opts[CODEC_TYPE_NB];
 extern AVFormatContext *avformat_opts;
 extern struct SwsContext *sws_opts;
 
 /**
- * Fallback for options that are not explixitly handled, these will be
+ * Fallback for options that are not explicitly handled, these will be
  * parsed through AVOptions.
  */
 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
@@ -71,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()
@@ -150,4 +157,10 @@ void show_license(void);
  */
 void show_formats(void);
 
+/**
+ * Returns a positive value if reads from standard input a line
+ * starting with [yY], otherwise returns 0.
+ */
+int read_yesno(void);
+
 #endif /* FFMPEG_CMDUTILS_H */