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.
|
|
|
|
#ifndef MATHEMATICS_H
|
|
|
|
|
#define MATHEMATICS_H
|
|
|
|
|
|
|
|
|
|
/* <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
|
|
|
|
static inline int64_t av_rescale(int64_t a, int64_t b, int64_t c)
|
|
|
|
|
{
|
|
|
|
|
return a *b / c;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|