You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
169 B

#ifndef MATHEMATICS_H
#define MATHEMATICS_H
/* Ëõ·ÅÔËËã */
static inline int64_t av_rescale(int64_t a, int64_t b, int64_t c)
{
return a *b / c;
}
#endif