1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

lavc doxy: add resampling functions to a doxy group.

This commit is contained in:
Anton Khirnov 2012-04-08 13:22:19 +02:00
parent 40ca0e6a75
commit 56512ce104

View File

@ -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.
*