]> mj.ucw.cz Git - libucw.git/blobdiff - images/sig-dump.c
ucw docs: Array sorter
[libucw.git] / images / sig-dump.c
index 5c35eefcb328b17e97cf5567c5fb925ac6295172..4a7bdf2ac4cb9a35e2b48a13f1087eafe9f39462 100644 (file)
@@ -7,9 +7,7 @@
  *     of the GNU Lesser General Public License.
  */
 
  *     of the GNU Lesser General Public License.
  */
 
-#include "lib/lib.h"
-#include "lib/fastbuf.h"
-#include "lib/unaligned.h"
+#include "ucw/lib.h"
 #include "images/images.h"
 #include "images/signature.h"
 #include <stdio.h>
 #include "images/images.h"
 #include "images/signature.h"
 #include <stdio.h>
@@ -52,91 +50,3 @@ image_region_dump(byte *buf, struct image_region *reg)
   *p = 0;
   return buf;
 }
   *p = 0;
   return buf;
 }
-
-uns
-get_image_signature(byte *buf, struct image_signature *sig)
-{
-  uns size = image_signature_size(*buf);
-  memcpy(sig, buf, size);
-#ifndef CPU_ALLOW_UNALIGNED
-#define FIX_U16(x) PUT_U16(&(x), x)
-  FIX_U16(sig->dh);
-  struct image_region *reg = sig->reg;
-  for (uns i = 0; i < sig->len; i++, reg++)
-    {
-      for (uns j = 0; j < IMAGE_REG_H; j++)
-       FIX_U16(reg->h[j]);
-      FIX_U16(reg->wa);
-      FIX_U16(reg->wb);
-    }
-#undef FIX_U16  
-#endif
-  return size;
-}
-
-uns
-put_image_signature(byte *buf, struct image_signature *sig)
-{
-  uns size = image_signature_size(sig->len);
-  memcpy(buf, sig, size);
-#ifndef CPU_ALLOW_UNALIGNED
-#define FIX_U16(x) do { x = GET_U16(&(x)); } while(0)
-  struct image_signature *tmp = (struct image_signature *)buf;
-  FIX_U16(tmp->dh);
-  struct image_region *reg = tmp->reg;
-  for (uns i = 0; i < tmp->len; i++, reg++)
-    {
-      for (uns j = 0; j < IMAGE_REG_H; j++)
-       FIX_U16(reg->h[j]);
-      FIX_U16(reg->wa);
-      FIX_U16(reg->wb);
-    }
-#undef FIX_U16
-#endif
-  return size;
-}
-uns
-bget_image_signature(struct fastbuf *fb, struct image_signature *sig)
-{
-  uns size = image_signature_size(bpeekc(sig));
-  breadb(fb, sig, size);
-#ifndef CPU_ALLOW_UNALIGNED
-#define FIX_U16(x) PUT_U16(&(x), x)
-  FIX_U16(sig->dh);
-  struct image_region *reg = sig->reg;
-  for (uns i = 0; i < sig->len; i++, reg++)
-    {
-      for (uns j = 0; j < IMAGE_REG_H; j++)
-       FIX_U16(reg->h[j]);
-      FIX_U16(reg->wa);
-      FIX_U16(reg->wb);
-    }
-#undef FIX_U16  
-#endif
-  return size;
-}
-
-uns
-bput_image_signature(struct fastbuf *fb, struct image_signature *sig)
-{
-  uns size = image_signature_size(sig->len);
-#ifdef CPU_ALLOW_UNALIGNED
-  bwrite(fb, sig, size);
-#else
-  struct image_signature tmp;
-  memcpy(tmp, sig, size);
-#define FIX_U16(x) do { x = GET_U16(&(x)); } while(0)
-  FIX_U16(tmp.dh);
-  struct image_region *reg = tmp.reg;
-  for (uns i = 0; i < tmp.len; i++, reg++)
-    {
-      for (uns j = 0; j < IMAGE_REG_H; j++)
-       FIX_U16(reg->h[j]);
-      FIX_U16(reg->wa);
-      FIX_U16(reg->wb);
-    }
-  bwrite(fb, &tmp, size);
-#undef FIX_U16
-#endif
-  return size;
-}