diff options
Diffstat (limited to 'src/decoder.h')
-rw-r--r-- | src/decoder.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/decoder.h b/src/decoder.h index cc1ac22..13a7f39 100644 --- a/src/decoder.h +++ b/src/decoder.h @@ -24,6 +24,9 @@ */ /* * $Log$ + * Revision 1.10 2005/05/02 10:35:23 deva + * Fixed wrongly showed snapshot thumbnails. + * * Revision 1.9 2005/05/02 09:50:22 deva * Rewrote freeze, shoot and record flags, from encoder to frame. * @@ -68,6 +71,11 @@ public: void stop(n_savestate save); private: + void getScreenshot(Frame *frame, unsigned char *rgb); + + pthread_mutex_t shot_mutex; + Frame* shot; + volatile bool b_freeze; volatile bool b_shoot; volatile bool b_record; |