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:
authorTimothy Gu <timothygu99@gmail.com>2014-07-06 20:53:53 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-07-06 22:58:58 +0400
commit77c5f546e7619a5b83976c69a9cc36b23edb1ca2 (patch)
tree074bb216982562e8c7a73aab6fed958fee269b62 /libswresample
parentfc71434e8464b345a64e5ee11a4b7be7230aacfa (diff)
swresample: add SwrContext doxy
Signed-off-by: Timothy Gu <timothygu99@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample')
-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;
/**