]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/formats.h
configure: add decimate filter dependency on avcodec
[ffmpeg] / libavfilter / formats.h
index 4cbfb7407403d578dc122d35e95a330c4ca036bc..c5a4e3db2b8bf7584943eb2842a6ba38c2c0003f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * This file is part of FFMpeg.
+ * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -61,7 +61,6 @@
  * get updated as well. Therefore, we have the format list structure store a
  * pointer to each of the pointers to itself.
  */
-#if !FF_API_FILTERS_PUBLIC
 struct AVFilterFormats {
     unsigned format_count;      ///< number of formats
     int *formats;               ///< list of media formats
@@ -69,7 +68,6 @@ struct AVFilterFormats {
     unsigned refcount;          ///< number of references to this list
     struct AVFilterFormats ***refs; ///< references to this list
 };
-#endif
 
 typedef struct AVFilterChannelLayouts {
     uint64_t *channel_layouts;  ///< list of channel layouts
@@ -158,7 +156,7 @@ AVFilterFormats *ff_make_format_list(const int *fmts);
 int ff_add_format(AVFilterFormats **avff, int64_t fmt);
 
 /**
- * Return a list of all formats supported by Libav for the given media type.
+ * Return a list of all formats supported by FFmpeg for the given media type.
  */
 AVFilterFormats *ff_all_formats(enum AVMediaType type);
 
@@ -223,4 +221,4 @@ void ff_formats_unref(AVFilterFormats **ref);
  */
 void ff_formats_changeref(AVFilterFormats **oldref, AVFilterFormats **newref);
 
-#endif // AVFILTER_FORMATS_H
+#endif /* AVFILTER_FORMATS_H */