If picture does no exist, warn and exit
[cascardo/movie.git] / point.h
diff --git a/point.h b/point.h
index 5b13e26..24a3f78 100644 (file)
--- a/point.h
+++ b/point.h
 #ifndef POINTS_H
 #define POINTS_H
 
+#include <glib.h>
+
 typedef struct
 {
   int x, y;
+  double rx, ry;
   char *name;
 } Point;
 
+GArray * ReadPoints (char *);
+void rescale_points (GArray *, GArray *);
+GArray * drop_dup_frames (GArray *, int);
+GArray *get_scales (int);
+
 #endif