summaryrefslogtreecommitdiff
path: root/libavformat/avformat.h
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2009-02-15 20:45:10 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2009-02-15 20:45:10 +0000
commitc1b0210115982f87cd9f55044586c3338a29b4d5 (patch)
treec3d09d42949fc77799eec14b7ff315e1aa93bd19 /libavformat/avformat.h
parent864899c329b82fbca21571dfaa124179dd48d07d (diff)
Improve grammar: "X next after Y" -> "next X after Y".
Originally committed as revision 17347 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r--libavformat/avformat.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index 5d61353455..85eb9ea6ba 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -689,14 +689,14 @@ extern AVOutputFormat *first_oformat;
/**
* If f is NULL, returns the first registered input format,
- * if f is non-NULL, returns the registered input format next after f,
+ * if f is non-NULL, returns the next registered input format after f,
* or NULL if f is the last one.
*/
AVInputFormat *av_iformat_next(AVInputFormat *f);
/**
* If f is NULL, returns the first registered output format,
- * if f is non-NULL, returns the registered output format next after f,
+ * if f is non-NULL, returns the next registered output format after f,
* or NULL if f is the last one.
*/
AVOutputFormat *av_oformat_next(AVOutputFormat *f);