diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-02-15 16:02:07 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-02-15 16:02:07 +0000 |
commit | 0334f79994bf714ca9cad523487bd497089cce0b (patch) | |
tree | 069fe7e22df77cddbcfc0f82c35acc0c78aa4ab9 /libavcodec/avcodec.h | |
parent | cf960242a465b92d26fc9c3d3f23ebde4a48904b (diff) | |
download | ffmpeg-0334f79994bf714ca9cad523487bd497089cce0b.tar.gz |
Document av_codec_next().
Originally committed as revision 17333 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 7360f93ace..7620fecc1f 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -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); /** |