#define VSP1_VIDEO_DEF_WIDTH           1024
 #define VSP1_VIDEO_DEF_HEIGHT          768
 
-#define VSP1_VIDEO_MIN_WIDTH           2U
 #define VSP1_VIDEO_MAX_WIDTH           8190U
-#define VSP1_VIDEO_MIN_HEIGHT          2U
 #define VSP1_VIDEO_MAX_HEIGHT          8190U
 
 /* -----------------------------------------------------------------------------
        height = round_down(height, info->vsub);
 
        /* Clamp the width and height. */
-       pix->width = clamp(width, VSP1_VIDEO_MIN_WIDTH, VSP1_VIDEO_MAX_WIDTH);
-       pix->height = clamp(height, VSP1_VIDEO_MIN_HEIGHT,
-                           VSP1_VIDEO_MAX_HEIGHT);
+       pix->width = clamp(width, info->hsub, VSP1_VIDEO_MAX_WIDTH);
+       pix->height = clamp(height, info->vsub, VSP1_VIDEO_MAX_HEIGHT);
 
        /*
         * Compute and clamp the stride and image size. While not documented in