new parameter addspacechars
[swftools.git] / avi2swf / videoreader.h
index 73799a2..9392d8c 100644 (file)
@@ -18,7 +18,7 @@ typedef struct _videoreader_t
 
     /* audio */
     int channels;
-    int rate;
+    int samplerate;
 
     /* progress */
     int frame;
@@ -26,7 +26,6 @@ typedef struct _videoreader_t
     void (*setparameter) (struct _videoreader_t*, char*name, char*value);
     int (*getsamples) (struct _videoreader_t*, void*buffer, int num);
     int (*getimage) (struct _videoreader_t*, void*buffer); // buffer must hold width*height*4 bytes
-    bool (*eof) (struct _videoreader_t*);
     void (*close) (struct _videoreader_t*);
 
 } videoreader_t;