]> granicus.if.org Git - libjpeg-turbo/commitdiff
Oops. Left out the all-important transform structures
authorDRC <dcommander@users.sourceforge.net>
Wed, 2 Mar 2011 09:27:49 +0000 (09:27 +0000)
committerDRC <dcommander@users.sourceforge.net>
Wed, 2 Mar 2011 09:27:49 +0000 (09:27 +0000)
git-svn-id: svn+ssh://svn.code.sf.net/p/libjpeg-turbo/code/trunk@489 632fc199-4ca6-4c93-a231-07263d6284db

turbojpeg.h

index 8a69316998f5e740dd43c4b54ed6f690bf8bd33d..5f39ecdaa867de9b0c0dd4673553f84ff9b3d70a 100644 (file)
@@ -115,6 +115,17 @@ TJXFORM_ROT270      /* Rotate image counter-clockwise by 90 degrees.  This
   /* This option will discard the color data in the input image and produce
      a grayscale output image. */
 
+typedef struct
+{
+       int x, y, w, h;
+} tjregion;
+
+typedef struct
+{
+       tjregion r;
+       int op, options;
+} tjtransform;
+
 typedef void* tjhandle;
 
 #define TJPAD(p) (((p)+3)&(~3))