diff options
author | attila <attila@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-10-14 20:51:18 +0000 |
---|---|---|
committer | attila <attila@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-10-14 20:51:18 +0000 |
commit | c42c0d811640b6ca0e601f2dc839668bb36eee2f (patch) | |
tree | 4ccdca777349aec599b6f979f89357cc571ab176 | |
parent | 1b3453f29f94af2d3ce1f9f5de7441a32b9ba33d (diff) |
MSGL_DBG2 -> MSGL_INFO
'cause we need to see this msg
pointed out by Kim Minh Kaplan
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7740 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | libmpcodecs/vf_rectangle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpcodecs/vf_rectangle.c b/libmpcodecs/vf_rectangle.c index 6de85c2c9c..21090a0acd 100644 --- a/libmpcodecs/vf_rectangle.c +++ b/libmpcodecs/vf_rectangle.c @@ -78,7 +78,7 @@ put_image(struct vf_instance_s* vf, mp_image_t* mpi){ /* Draw the rectangle */ - mp_msg(MSGT_VFILTER,MSGL_DBG2, "rectangle: -vop crop=%d:%d:%d:%d \n", vf->priv->w, vf->priv->h, vf->priv->x, vf->priv->y); + mp_msg(MSGT_VFILTER,MSGL_INFO, "rectangle: -vop crop=%d:%d:%d:%d \n", vf->priv->w, vf->priv->h, vf->priv->x, vf->priv->y); if (vf->priv->x < 0) x = 0; |