[MPlayer-cvslog] CVS: main/libmpcodecs vf_expand.c,1.29,1.30
Oded Shimon CVS
syncmail at mplayerhq.hu
Thu Jul 7 21:55:00 CEST 2005
CVS change done by Oded Shimon CVS
Update of /cvsroot/mplayer/main/libmpcodecs
In directory mail:/var2/tmp/cvs-serv11933/libmpcodecs
Modified Files:
vf_expand.c
Log Message:
add 'aspect' and 'round' params to vf_expand.
(my first commit! I hope I did this correctly ;)
Index: vf_expand.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vf_expand.c,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- vf_expand.c 24 Apr 2005 09:29:01 -0000 1.29
+++ vf_expand.c 7 Jul 2005 19:54:57 -0000 1.30
@@ -27,12 +27,16 @@
int exp_w,exp_h;
int exp_x,exp_y;
int osd;
+ double aspect;
+ int round;
unsigned char* fb_ptr;
int first_slice;
} vf_priv_dflt = {
-1,-1,
-1,-1,
0,
+ 0.,
+ 1,
NULL,
0
};
@@ -178,6 +182,18 @@
else if ( vf->priv->exp_h < -1 ) vf->priv->exp_h=height - vf->priv->exp_h;
else if( vf->priv->exp_h<height ) vf->priv->exp_h=height;
#endif
+ if (vf->priv->aspect) {
+ if (vf->priv->exp_h < vf->priv->exp_w * vf->priv->aspect) {
+ vf->priv->exp_h = vf->priv->exp_w * vf->priv->aspect;
+ } else {
+ vf->priv->exp_w = vf->priv->exp_h / vf->priv->aspect;
+ }
+ }
+ if (vf->priv->round > 1) {
+ vf->priv->exp_w = (1 + (vf->priv->exp_w - 1) / vf->priv->round) * vf->priv->round;
+ vf->priv->exp_h = (1 + (vf->priv->exp_h - 1) / vf->priv->round) * vf->priv->round;
+ }
+
if(vf->priv->exp_x<0 || vf->priv->exp_x+width>vf->priv->exp_w) vf->priv->exp_x=(vf->priv->exp_w-width)/2;
if(vf->priv->exp_y<0 || vf->priv->exp_y+height>vf->priv->exp_h) vf->priv->exp_y=(vf->priv->exp_h-height)/2;
vf->priv->fb_ptr=NULL;
@@ -377,27 +393,14 @@
vf->draw_slice=draw_slice;
vf->get_image=get_image;
vf->put_image=put_image;
- if(!vf->priv) {
- vf->priv=malloc(sizeof(struct vf_priv_s));
- vf->priv->exp_x=
- vf->priv->exp_y=
- vf->priv->exp_w=
- vf->priv->exp_h=-1;
- vf->priv->osd=0;
- // parse args ->
- } // if(!vf->priv)
- if(args) sscanf(args, "%d:%d:%d:%d:%d",
- &vf->priv->exp_w,
- &vf->priv->exp_h,
- &vf->priv->exp_x,
- &vf->priv->exp_y,
- &vf->priv->osd);
- mp_msg(MSGT_VFILTER, MSGL_INFO, "Expand: %d x %d, %d ; %d (-1=autodetect) osd: %d\n",
+ mp_msg(MSGT_VFILTER, MSGL_INFO, "Expand: %d x %d, %d ; %d, osd: %d, aspect: %lf, round: %d\n",
vf->priv->exp_w,
vf->priv->exp_h,
vf->priv->exp_x,
vf->priv->exp_y,
- vf->priv->osd);
+ vf->priv->osd,
+ vf->priv->aspect,
+ vf->priv->round);
return 1;
}
@@ -408,6 +411,8 @@
{"x", ST_OFF(exp_x), CONF_TYPE_INT, M_OPT_MIN, -1, 0, NULL},
{"y", ST_OFF(exp_y), CONF_TYPE_INT, M_OPT_MIN, -1, 0, NULL},
{"osd", ST_OFF(osd), CONF_TYPE_FLAG, 0 , 0, 1, NULL},
+ {"aspect", ST_OFF(aspect), CONF_TYPE_DOUBLE, M_OPT_MIN, 0, 0, NULL},
+ {"round", ST_OFF(round), CONF_TYPE_INT, M_OPT_MIN, 1, 0, NULL},
{ NULL, NULL, 0, 0, 0, 0, NULL }
};
More information about the MPlayer-cvslog
mailing list