]> git.sesse.net Git - ffmpeg/blobdiff - cmdutils.h
lavfi/setfield: rename variable top_field_first to mode
[ffmpeg] / cmdutils.h
index 26cd96a131cbf6d238b1d86b1b1e14cbd448ee4e..2266ee132ec00f02660f139c8883f33adc2e6e06 100644 (file)
@@ -51,6 +51,7 @@ extern const int this_year;
 extern AVCodecContext *avcodec_opts[AVMEDIA_TYPE_NB];
 extern AVFormatContext *avformat_opts;
 extern struct SwsContext *sws_opts;
+extern struct SwrContext *swr_opts;
 extern AVDictionary *format_opts, *codec_opts;
 
 /**
@@ -357,7 +358,7 @@ int cmdutils_read_file(const char *filename, char **bufptr, size_t *size);
  * at configuration time or in a "ffpresets" folder along the executable
  * on win32, in that order. If no such file is found and
  * codec_name is defined, then search for a file named
- * codec_name-preset_name.ffpreset in the above-mentioned directories.
+ * codec_name-preset_name.avpreset in the above-mentioned directories.
  *
  * @param filename buffer where the name of the found filename is written
  * @param filename_size size in bytes of the filename buffer
@@ -369,6 +370,7 @@ int cmdutils_read_file(const char *filename, char **bufptr, size_t *size);
 FILE *get_preset_file(char *filename, size_t filename_size,
                       const char *preset_name, int is_path, const char *codec_name);
 
+
 /**
  * Do all the necessary cleanup and abort.
  * This function is implemented in the avtools, not cmdutils.