diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-02-15 20:45:10 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-02-15 20:45:10 +0000 |
commit | c1b0210115982f87cd9f55044586c3338a29b4d5 (patch) | |
tree | c3d09d42949fc77799eec14b7ff315e1aa93bd19 | |
parent | 864899c329b82fbca21571dfaa124179dd48d07d (diff) | |
download | ffmpeg-c1b0210115982f87cd9f55044586c3338a29b4d5.tar.gz |
Improve grammar: "X next after Y" -> "next X after Y".
Originally committed as revision 17347 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/avcodec.h | 2 | ||||
-rw-r--r-- | libavformat/avformat.h | 4 | ||||
-rw-r--r-- | libavformat/avio.h | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 7620fecc1f..4dfd6d7ce1 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2661,7 +2661,7 @@ int avpicture_deinterlace(AVPicture *dst, const AVPicture *src, /** * If c is NULL, returns the first registered codec, - * if c is non-NULL, returns the registered codec next after c, + * if c is non-NULL, returns the next registered codec after c, * or NULL if c is the last one. */ AVCodec *av_codec_next(AVCodec *c); 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); diff --git a/libavformat/avio.h b/libavformat/avio.h index 21cdd9acc8..3658c9ee53 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -145,7 +145,7 @@ extern URLInterruptCB *url_interrupt_cb; /** * If protocol is NULL, returns the first registered protocol, - * if protocol is non-NULL, returns the registered protocol next after protocol, + * if protocol is non-NULL, returns the next registered protocol after protocol, * or NULL if protocol is the last one. */ URLProtocol *av_protocol_next(URLProtocol *p); |