summaryrefslogtreecommitdiff
path: root/src/decoder.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/decoder.h')
-rw-r--r--src/decoder.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/decoder.h b/src/decoder.h
index a7e2b76..cc1ac22 100644
--- a/src/decoder.h
+++ b/src/decoder.h
@@ -24,6 +24,9 @@
*/
/*
* $Log$
+ * Revision 1.9 2005/05/02 09:50:22 deva
+ * Rewrote freeze, shoot and record flags, from encoder to frame.
+ *
* Revision 1.8 2005/05/01 09:56:26 deva
* Added Id and Log tags to all files
*
@@ -59,7 +62,16 @@ public:
~Decoder();
void run();
+ void freeze();
+ void shoot(unsigned char *rgb);
+ void start();
+ void stop(n_savestate save);
+
private:
+ volatile bool b_freeze;
+ volatile bool b_shoot;
+ volatile bool b_record;
+
Error *errobj;
AVCodecContext dvcodec;