1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

Document av_codec_next().

Originally committed as revision 17333 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Stefano Sabatini 2009-02-15 16:02:07 +00:00
parent cf960242a4
commit 0334f79994

View File

@ -2659,6 +2659,11 @@ int avpicture_deinterlace(AVPicture *dst, const AVPicture *src,
/* external high level API */
/**
* If c is NULL, returns the first registered codec,
* if c is non-NULL, returns the registered codec next after c,
* or NULL if c is the last one.
*/
AVCodec *av_codec_next(AVCodec *c);
/**