comparison avcodec.h @ 8933:678fc8612787 libavcodec

Improve grammar: "X next after Y" -> "next X after Y".
author stefano
date Sun, 15 Feb 2009 20:45:10 +0000
parents 233fda721f1b
children 34f2c7189710
comparison
equal deleted inserted replaced
8932:f647961ab2ac 8933:678fc8612787
2659 2659
2660 /* external high level API */ 2660 /* external high level API */
2661 2661
2662 /** 2662 /**
2663 * If c is NULL, returns the first registered codec, 2663 * If c is NULL, returns the first registered codec,
2664 * if c is non-NULL, returns the registered codec next after c, 2664 * if c is non-NULL, returns the next registered codec after c,
2665 * or NULL if c is the last one. 2665 * or NULL if c is the last one.
2666 */ 2666 */
2667 AVCodec *av_codec_next(AVCodec *c); 2667 AVCodec *av_codec_next(AVCodec *c);
2668 2668
2669 /** 2669 /**