Mercurial > libavcodec.hg
changeset 3356:90344fa4a1d4 libavcodec
cleanup patch from Diego Petten <flameeyes@gentoo.org>
author | lu_zero |
---|---|
date | Sun, 25 Jun 2006 17:37:12 +0000 |
parents | 411b96231d5d |
children | 649ebe86d779 |
files | adx.c avcodec.h |
diffstat | 2 files changed, 1 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/adx.c Sat Jun 24 20:09:49 2006 +0000 +++ b/adx.c Sun Jun 25 17:37:12 2006 +0000 @@ -267,7 +267,7 @@ 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;
--- a/avcodec.h Sat Jun 24 20:09:49 2006 +0000 +++ b/avcodec.h Sun Jun 25 17:37:12 2006 +0000 @@ -2530,9 +2530,6 @@ void *av_mallocz_static(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, int pix_fmt, int width, int height);