comparison avformat.h @ 4499:dee012239d99 libavformat

Improve grammar: "X next after Y" -> "next X after Y".
author stefano
date Sun, 15 Feb 2009 20:45:10 +0000
parents 26982fb2d510
children 63c5b6f7d3f5
comparison
equal deleted inserted replaced
4498:d7a7c516f281 4499:dee012239d99
687 extern AVOutputFormat *first_oformat; 687 extern AVOutputFormat *first_oformat;
688 #endif 688 #endif
689 689
690 /** 690 /**
691 * If f is NULL, returns the first registered input format, 691 * If f is NULL, returns the first registered input format,
692 * if f is non-NULL, returns the registered input format next after f, 692 * if f is non-NULL, returns the next registered input format after f,
693 * or NULL if f is the last one. 693 * or NULL if f is the last one.
694 */ 694 */
695 AVInputFormat *av_iformat_next(AVInputFormat *f); 695 AVInputFormat *av_iformat_next(AVInputFormat *f);
696 696
697 /** 697 /**
698 * If f is NULL, returns the first registered output format, 698 * If f is NULL, returns the first registered output format,
699 * if f is non-NULL, returns the registered output format next after f, 699 * if f is non-NULL, returns the next registered output format after f,
700 * or NULL if f is the last one. 700 * or NULL if f is the last one.
701 */ 701 */
702 AVOutputFormat *av_oformat_next(AVOutputFormat *f); 702 AVOutputFormat *av_oformat_next(AVOutputFormat *f);
703 703
704 enum CodecID av_guess_image2_codec(const char *filename); 704 enum CodecID av_guess_image2_codec(const char *filename);