Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libswresample/swresample.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/libswresample/swresample.h b/libswresample/swresample.h
index 27526efca9..5977c9c8d7 100644
--- a/libswresample/swresample.h
+++ b/libswresample/swresample.h
@@ -149,6 +149,12 @@ enum SwrFilterType {
* @}
*/
+/**
+ * The libswresample context. Unlike libavcodec and libavformat, this structure
+ * is opaque. This means that if you would like to set options, you must use
+ * the @ref avoptions API and cannot directly set values to members of the
+ * structure.
+ */
typedef struct SwrContext SwrContext;
/**