changeset 8921:233fda721f1b libavcodec

Document av_codec_next().
author stefano
date Sun, 15 Feb 2009 16:02:07 +0000
parents a79f5a6fd15a
children baee840662af
files avcodec.h
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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);
 
 /**