From 56512ce104e7f39409fee55fbf14085d5ab9c800 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Sun, 8 Apr 2012 13:22:19 +0200 Subject: [PATCH] lavc doxy: add resampling functions to a doxy group. --- libavcodec/avcodec.h | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 55d62a1343..9cecf0c922 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -3918,8 +3918,12 @@ int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size, * @} */ -/* resample.c */ - +/** + * @defgroup lavc_resample Audio resampling + * @ingroup libavc + * + * @{ + */ struct ReSampleContext; struct AVResampleContext; @@ -3997,6 +4001,10 @@ int av_resample(struct AVResampleContext *c, short *dst, short *src, int *consum void av_resample_compensate(struct AVResampleContext *c, int sample_delta, int compensation_distance); void av_resample_close(struct AVResampleContext *c); +/** + * @} + */ + /** * Allocate memory for a picture. Call avpicture_free() to free it. *