comparison avcodec.h @ 12071:126392340f69 libavcodec

Remove angular brackets from Doxygen comments; Doxygen confuses them for HTML.
author diego
date Fri, 02 Jul 2010 12:48:32 +0000
parents 3798d134f330
children 66cd745af30f
comparison
equal deleted inserted replaced
12070:8edc9df8b20e 12071:126392340f69
3911 /** 3911 /**
3912 * Parse str and put in width_ptr and height_ptr the detected values. 3912 * Parse str and put in width_ptr and height_ptr the detected values.
3913 * 3913 *
3914 * @return 0 in case of a successful parsing, a negative value otherwise 3914 * @return 0 in case of a successful parsing, a negative value otherwise
3915 * @param[in] str the string to parse: it has to be a string in the format 3915 * @param[in] str the string to parse: it has to be a string in the format
3916 * <width>x<height> or a valid video frame size abbreviation. 3916 * width x height or a valid video frame size abbreviation.
3917 * @param[in,out] width_ptr pointer to the variable which will contain the detected 3917 * @param[in,out] width_ptr pointer to the variable which will contain the detected
3918 * frame width value 3918 * frame width value
3919 * @param[in,out] height_ptr pointer to the variable which will contain the detected 3919 * @param[in,out] height_ptr pointer to the variable which will contain the detected
3920 * frame height value 3920 * frame height value
3921 */ 3921 */
3924 /** 3924 /**
3925 * Parse str and store the detected values in *frame_rate. 3925 * Parse str and store the detected values in *frame_rate.
3926 * 3926 *
3927 * @return 0 in case of a successful parsing, a negative value otherwise 3927 * @return 0 in case of a successful parsing, a negative value otherwise
3928 * @param[in] str the string to parse: it has to be a string in the format 3928 * @param[in] str the string to parse: it has to be a string in the format
3929 * <frame_rate_num>/<frame_rate_den>, a float number or a valid video rate abbreviation 3929 * frame_rate_num / frame_rate_den, a float number or a valid video rate abbreviation
3930 * @param[in,out] frame_rate pointer to the AVRational which will contain the detected 3930 * @param[in,out] frame_rate pointer to the AVRational which will contain the detected
3931 * frame rate 3931 * frame rate
3932 */ 3932 */
3933 int av_parse_video_frame_rate(AVRational *frame_rate, const char *str); 3933 int av_parse_video_frame_rate(AVRational *frame_rate, const char *str);
3934 3934