[MPlayer-cvslog] r26020 - trunk/libmpcodecs/vf_rgbtest.c

reimar subversion at mplayerhq.hu
Sun Feb 17 20:49:46 CET 2008


Author: reimar
Date: Sun Feb 17 20:49:46 2008
New Revision: 26020

Log:
Allow specifying a size for -vf rgbtest


Modified:
   trunk/libmpcodecs/vf_rgbtest.c

Modified: trunk/libmpcodecs/vf_rgbtest.c
==============================================================================
--- trunk/libmpcodecs/vf_rgbtest.c	(original)
+++ trunk/libmpcodecs/vf_rgbtest.c	Sun Feb 17 20:49:46 2008
@@ -14,6 +14,7 @@
 
 struct vf_priv_s {
     unsigned int fmt;
+    int w, h;
 };
 
 static unsigned int getfmt(unsigned int outfmt){
@@ -79,6 +80,8 @@ static void put_pixel(uint8_t *buf, int 
 static int config(struct vf_instance_s* vf,
         int width, int height, int d_width, int d_height,
 	unsigned int flags, unsigned int outfmt){
+    if (vf->priv->w > 0) { d_width  = width  = vf->priv->w; }
+    if (vf->priv->h > 0) { d_height = height = vf->priv->h; }
     vf->priv->fmt=getfmt(outfmt);
     mp_msg(MSGT_VFILTER,MSGL_V,"rgb test format:%s\n", vo_format_name(outfmt));
     return vf_next_config(vf,width,height,d_width,d_height,flags,vf->priv->fmt);
@@ -87,19 +90,21 @@ static int config(struct vf_instance_s* 
 static int put_image(struct vf_instance_s* vf, mp_image_t *mpi, double pts){
     mp_image_t *dmpi;
     int x, y;
+    int w = vf->priv->w > 0 ? vf->priv->w : mpi->w;
+    int h = vf->priv->h > 0 ? vf->priv->h : mpi->h;
 
     // hope we'll get DR buffer:
     dmpi=vf_get_image(vf->next,vf->priv->fmt,
 	MP_IMGTYPE_TEMP, MP_IMGFLAG_ACCEPT_STRIDE,
-	mpi->w, mpi->h);
+	w, h);
 
-     for(y=0; y<mpi->h; y++){
-         for(x=0; x<mpi->w; x++){
-             int c= 256*x/mpi->w;
+     for(y=0; y<h; y++){
+         for(x=0; x<w; x++){
+             int c= 256*x/w;
              int r=0,g=0,b=0;
              
-             if(3*y<mpi->h)        r=c;
-             else if(3*y<2*mpi->h) g=c;
+             if(3*y<h)        r=c;
+             else if(3*y<2*h) g=c;
              else                  b=c;
              
              put_pixel(dmpi->planes[0], x, y, dmpi->stride[0], r, g, b, vf->priv->fmt);
@@ -122,6 +127,9 @@ static int open(vf_instance_t *vf, char*
     vf->put_image=put_image;
     vf->query_format=query_format;
     vf->priv=malloc(sizeof(struct vf_priv_s));
+    vf->priv->w = vf->priv->h = 0;
+    if (args)
+        sscanf(args, "%d:%d", &vf->priv->w, &vf->priv->h);
     return 1;
 }
 



More information about the MPlayer-cvslog mailing list