* @param c second rational.
* @return b*c.
*/
-AVRational av_mul_q(AVRational b, AVRational c) av_const;
+AVRational av_mul_q(AVRational b, AVRational c);
/**
* Divides one rational by another.
* @param c second rational.
* @return b/c.
*/
-AVRational av_div_q(AVRational b, AVRational c) av_const;
+AVRational av_div_q(AVRational b, AVRational c);
/**
* Adds two rationals.
* @param c second rational.
* @return b+c.
*/
-AVRational av_add_q(AVRational b, AVRational c) av_const;
+AVRational av_add_q(AVRational b, AVRational c);
/**
* Subtracts one rational from another.
* @param c second rational.
* @return b-c.
*/
-AVRational av_sub_q(AVRational b, AVRational c) av_const;
+AVRational av_sub_q(AVRational b, AVRational c);
/**
* Converts a double precision floating point number to a rational.
* @param max the maximum allowed numerator and denominator
* @return (AVRational) d.
*/
-AVRational av_d2q(double d, int max) av_const;
+AVRational av_d2q(double d, int max);
#endif /* FFMPEG_RATIONAL_H */