summaryrefslogtreecommitdiffstats
path: root/libmpcodecs
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-10-29 18:51:52 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-10-29 18:51:52 +0000
commit8b2f3eb5e4aa3b72f2c1250aa244c14a4bf9cab0 (patch)
tree8e8be56b4b9834c9a740ea9a1f5e1b7440c9e3e6 /libmpcodecs
parent0f1d6aabec10a00dea5ac156357aa503194700bf (diff)
downloadmpv-8b2f3eb5e4aa3b72f2c1250aa244c14a4bf9cab0.tar.bz2
mpv-8b2f3eb5e4aa3b72f2c1250aa244c14a4bf9cab0.tar.xz
cosmetics ;)
prefixing all functions with pp_ to avoid namespace issues git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7962 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs')
-rw-r--r--libmpcodecs/vf_pp.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libmpcodecs/vf_pp.c b/libmpcodecs/vf_pp.c
index 92241fb573..52f9abc863 100644
--- a/libmpcodecs/vf_pp.c
+++ b/libmpcodecs/vf_pp.c
@@ -25,13 +25,13 @@ struct vf_priv_s {
static int config(struct vf_instance_s* vf,
int width, int height, int d_width, int d_height,
unsigned int voflags, unsigned int outfmt){
- vf->priv->context= getPPContext(width, height);
+ vf->priv->context= pp_get_context(width, height);
return vf_next_config(vf,width,height,d_width,d_height,voflags,vf->priv->outfmt);
}
static void uninit(struct vf_instance_s* vf){
- if(vf->priv->context) freePPContext(vf->priv->context);
+ if(vf->priv->context) pp_free_context(vf->priv->context);
}
static int query_format(struct vf_instance_s* vf, unsigned int fmt){
@@ -89,7 +89,7 @@ static int put_image(struct vf_instance_s* vf, mp_image_t *mpi){
if(vf->priv->pp || !(mpi->flags&MP_IMGFLAG_DIRECT)){
// do the postprocessing! (or copy if no DR)
- postprocess(mpi->planes ,mpi->stride,
+ pp_postprocess(mpi->planes ,mpi->stride,
vf->priv->dmpi->planes,vf->priv->dmpi->stride,
(mpi->w+7)&(~7),mpi->h,
mpi->qscale, mpi->qstride,
@@ -132,7 +132,7 @@ static int open(vf_instance_t *vf, char* args){
if(args){
if(!strcmp("help", args)){
- printf("%s", postproc_help);
+ printf("%s", pp_help);
exit(1);
}
@@ -147,7 +147,7 @@ static int open(vf_instance_t *vf, char* args){
if(name){
for(i=0; i<=GET_PP_QUALITY_MAX; i++){
- vf->priv->ppMode[i]= getPPModeByNameAndQuality(name, i);
+ vf->priv->ppMode[i]= pp_get_mode_by_name_and_quality(name, i);
if(vf->priv->ppMode[i].error) return -1;
}
}else{