---
 libavfilter/buffersink.h |   11 +++++++++++
 libavfilter/buffersrc.h  |   11 +++++++++++
 2 files changed, 22 insertions(+)

diff --git a/libavfilter/buffersink.h b/libavfilter/buffersink.h
index 0b183f7..b2466f5 100644
--- a/libavfilter/buffersink.h
+++ b/libavfilter/buffersink.h
@@ -21,11 +21,18 @@
 
 /**
  * @file
+ * @ingroup lavfi_buffersink
  * memory buffer sink API
  */
 
 #include "avfilter.h"
 
+/**
+ * @defgroup lavfi_buffersink Buffer sink API
+ * @ingroup lavfi
+ * @{
+ */
+
 #if FF_API_AVFILTERBUFFER
 /**
  * Get a buffer with filtered data from sink and put it in buf.
@@ -98,4 +105,8 @@ int av_buffersink_get_frame(AVFilterContext *ctx, AVFrame 
*frame);
  */
 int av_buffersink_get_samples(AVFilterContext *ctx, AVFrame *frame, int 
nb_samples);
 
+/**
+ * @}
+ */
+
 #endif /* AVFILTER_BUFFERSINK_H */
diff --git a/libavfilter/buffersrc.h b/libavfilter/buffersrc.h
index c6f7ff9..419157c 100644
--- a/libavfilter/buffersrc.h
+++ b/libavfilter/buffersrc.h
@@ -22,11 +22,18 @@
 
 /**
  * @file
+ * @ingroup lavfi_buffersrc
  * Memory buffer source API.
  */
 
 #include "avfilter.h"
 
+/**
+ * @defgroup lavfi_buffersrc Buffer source API
+ * @ingroup lavfi
+ * @{
+ */
+
 #if FF_API_AVFILTERBUFFER
 /**
  * Add a buffer to the filtergraph s.
@@ -70,4 +77,8 @@ int av_buffersrc_write_frame(AVFilterContext *s, const 
AVFrame *frame);
  */
 int av_buffersrc_add_frame(AVFilterContext *ctx, AVFrame *frame);
 
+/**
+ * @}
+ */
+
 #endif /* AVFILTER_BUFFERSRC_H */
-- 
1.7.10.4

_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to