Mercurial > mplayer.hg
changeset 16677:044b85964c05
Compilation fix for systems lacking lrintf like e.g. NetBSD.
patch by Jan Knutar < jknutar -- at -- nic -- dot -- fi > and me
author | diego |
---|---|
date | Wed, 05 Oct 2005 09:39:08 +0000 |
parents | c2ebd1b1e490 |
children | 4ebad3313fe6 |
files | libmpcodecs/vf_qp.c |
diffstat | 1 files changed, 14 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/libmpcodecs/vf_qp.c Tue Oct 04 23:37:54 2005 +0000 +++ b/libmpcodecs/vf_qp.c Wed Oct 05 09:39:08 2005 +0000 @@ -36,14 +36,24 @@ void *opaque); #endif +// Needed to bring in lrintf. +#define HAVE_AV_CONFIG_H + #ifdef USE_LIBAVCODEC_SO #include <ffmpeg/avcodec.h> #include <ffmpeg/dsputil.h> +#include <ffmpeg/common.h> #else #include "../libavcodec/avcodec.h" #include "../libavcodec/dsputil.h" +#include "../libavutil/common.h" #endif +/* FIXME: common.h defines printf away when HAVE_AV_CONFIG + * is defined, but mp_image.h needs printf. + */ +#undef printf + #ifdef HAVE_MALLOC_H #include <malloc.h> #endif @@ -68,7 +78,7 @@ int i; vf->priv->qp_stride= (width+15)>>4; - vf->priv->qp= malloc(vf->priv->qp_stride*h*sizeof(int8_t)); + vf->priv->qp= av_malloc(vf->priv->qp_stride*h*sizeof(int8_t)); for(i=-129; i<128; i++){ double const_values[]={ @@ -155,10 +165,10 @@ static void uninit(struct vf_instance_s* vf){ if(!vf->priv) return; - if(vf->priv->qp) free(vf->priv->qp); + if(vf->priv->qp) av_free(vf->priv->qp); vf->priv->qp= NULL; - free(vf->priv); + av_free(vf->priv); vf->priv=NULL; } @@ -168,7 +178,7 @@ vf->put_image=put_image; vf->get_image=get_image; vf->uninit=uninit; - vf->priv=malloc(sizeof(struct vf_priv_s)); + vf->priv=av_malloc(sizeof(struct vf_priv_s)); memset(vf->priv, 0, sizeof(struct vf_priv_s)); // avcodec_init();