Mercurial > libavcodec.hg
comparison avcodec.h @ 5127:4dbe6578f811 libavcodec
misc spelling fixes
| author | diego |
|---|---|
| date | Tue, 12 Jun 2007 09:29:25 +0000 |
| parents | 7982b376b58a |
| children | 0134da1737d0 |
comparison
equal
deleted
inserted
replaced
| 5126:7982b376b58a | 5127:4dbe6578f811 |
|---|---|
| 2883 extern unsigned int av_xiphlacing(unsigned char *s, unsigned int v); | 2883 extern unsigned int av_xiphlacing(unsigned char *s, unsigned int v); |
| 2884 | 2884 |
| 2885 /** | 2885 /** |
| 2886 * Parses \p str and put in \p width_ptr and \p height_ptr the detected values. | 2886 * Parses \p str and put in \p width_ptr and \p height_ptr the detected values. |
| 2887 * | 2887 * |
| 2888 * @return 0 in case of a successfull parsing, a negative value otherwise | 2888 * @return 0 in case of a successful parsing, a negative value otherwise |
| 2889 * @param[in] str the string to parse: it has to be a string in the format | 2889 * @param[in] str the string to parse: it has to be a string in the format |
| 2890 * <width>x<height> or a valid video frame size abbreviation. | 2890 * <width>x<height> or a valid video frame size abbreviation. |
| 2891 * @param[in,out] width_ptr pointer to the variable which will contain the detected | 2891 * @param[in,out] width_ptr pointer to the variable which will contain the detected |
| 2892 * frame width value | 2892 * frame width value |
| 2893 * @param[in,out] height_ptr pointer to the variable which will contain the detected | 2893 * @param[in,out] height_ptr pointer to the variable which will contain the detected |
| 2896 int av_parse_video_frame_size(int *width_ptr, int *height_ptr, const char *str); | 2896 int av_parse_video_frame_size(int *width_ptr, int *height_ptr, const char *str); |
| 2897 | 2897 |
| 2898 /** | 2898 /** |
| 2899 * Parses \p str and put in \p frame_rate the detected values. | 2899 * Parses \p str and put in \p frame_rate the detected values. |
| 2900 * | 2900 * |
| 2901 * @return 0 in case of a successfull parsing, a negative value otherwise | 2901 * @return 0 in case of a successful parsing, a negative value otherwise |
| 2902 * @param[in] str the string to parse: it has to be a string in the format | 2902 * @param[in] str the string to parse: it has to be a string in the format |
| 2903 * <frame_rate_nom>/<frame_rate_den>, a float number or a valid video rate abbreviation | 2903 * <frame_rate_nom>/<frame_rate_den>, a float number or a valid video rate abbreviation |
| 2904 * @param[in,out] frame_rate pointer to the AVRational which will contain the detected | 2904 * @param[in,out] frame_rate pointer to the AVRational which will contain the detected |
| 2905 * frame rate | 2905 * frame rate |
| 2906 */ | 2906 */ |
