提交 f3a30e3a 编写于 作者: L Luca Barbato

cleanup patch from Diego Pettenò <flameeyes@gentoo.org>

Originally committed as revision 5526 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 521f2587
...@@ -267,7 +267,7 @@ static uint32_t read_long(const unsigned char *p) ...@@ -267,7 +267,7 @@ static uint32_t read_long(const unsigned char *p)
return (p[0]<<24)|(p[1]<<16)|(p[2]<<8)|p[3]; return (p[0]<<24)|(p[1]<<16)|(p[2]<<8)|p[3];
} }
int is_adx(const unsigned char *buf,size_t bufsize) static int is_adx(const unsigned char *buf,size_t bufsize)
{ {
int offset; int offset;
......
...@@ -2530,9 +2530,6 @@ void av_free_static(void); ...@@ -2530,9 +2530,6 @@ void av_free_static(void);
void *av_mallocz_static(unsigned int size); void *av_mallocz_static(unsigned int size);
void *av_realloc_static(void *ptr, unsigned int size); void *av_realloc_static(void *ptr, unsigned int size);
/* add by bero : in adx.c */
int is_adx(const unsigned char *buf,size_t bufsize);
void img_copy(AVPicture *dst, const AVPicture *src, void img_copy(AVPicture *dst, const AVPicture *src,
int pix_fmt, int width, int height); int pix_fmt, int width, int height);
......
...@@ -81,10 +81,6 @@ typedef struct AVFrac { ...@@ -81,10 +81,6 @@ typedef struct AVFrac {
int64_t val, num, den; int64_t val, num, den;
} AVFrac; } AVFrac;
void av_frac_init(AVFrac *f, int64_t val, int64_t num, int64_t den);
void av_frac_add(AVFrac *f, int64_t incr);
void av_frac_set(AVFrac *f, int64_t val);
/*************************************************/ /*************************************************/
/* input/output formats */ /* input/output formats */
......
...@@ -26,6 +26,10 @@ ...@@ -26,6 +26,10 @@
* Various utility functions for using ffmpeg library. * Various utility functions for using ffmpeg library.
*/ */
static void av_frac_init(AVFrac *f, int64_t val, int64_t num, int64_t den);
static void av_frac_add(AVFrac *f, int64_t incr);
static void av_frac_set(AVFrac *f, int64_t val);
/** head of registered input format linked list. */ /** head of registered input format linked list. */
AVInputFormat *first_iformat = NULL; AVInputFormat *first_iformat = NULL;
/** head of registered output format linked list. */ /** head of registered output format linked list. */
...@@ -3147,7 +3151,7 @@ void av_set_pts_info(AVStream *s, int pts_wrap_bits, ...@@ -3147,7 +3151,7 @@ void av_set_pts_info(AVStream *s, int pts_wrap_bits,
* @param num must be >= 0 * @param num must be >= 0
* @param den must be >= 1 * @param den must be >= 1
*/ */
void av_frac_init(AVFrac *f, int64_t val, int64_t num, int64_t den) static void av_frac_init(AVFrac *f, int64_t val, int64_t num, int64_t den)
{ {
num += (den >> 1); num += (den >> 1);
if (num >= den) { if (num >= den) {
...@@ -3162,7 +3166,7 @@ void av_frac_init(AVFrac *f, int64_t val, int64_t num, int64_t den) ...@@ -3162,7 +3166,7 @@ void av_frac_init(AVFrac *f, int64_t val, int64_t num, int64_t den)
/** /**
* Set f to (val + 0.5). * Set f to (val + 0.5).
*/ */
void av_frac_set(AVFrac *f, int64_t val) static void av_frac_set(AVFrac *f, int64_t val)
{ {
f->val = val; f->val = val;
f->num = f->den >> 1; f->num = f->den >> 1;
...@@ -3174,7 +3178,7 @@ void av_frac_set(AVFrac *f, int64_t val) ...@@ -3174,7 +3178,7 @@ void av_frac_set(AVFrac *f, int64_t val)
* @param f fractional number * @param f fractional number
* @param incr increment, can be positive or negative * @param incr increment, can be positive or negative
*/ */
void av_frac_add(AVFrac *f, int64_t incr) static void av_frac_add(AVFrac *f, int64_t incr)
{ {
int64_t num, den; int64_t num, den;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册