# HG changeset patch # User stefano # Date 1234713727 0 # Node ID 233fda721f1b874a0278f11f77c00538e9a0289d # Parent a79f5a6fd15a16fce2dc03eca17297cee4351c9e Document av_codec_next(). diff -r a79f5a6fd15a -r 233fda721f1b avcodec.h --- a/avcodec.h Sun Feb 15 15:23:02 2009 +0000 +++ b/avcodec.h Sun Feb 15 16:02:07 2009 +0000 @@ -2659,6 +2659,11 @@ /* 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); /**