diff options
author | deva <deva> | 2005-05-02 10:35:23 +0000 |
---|---|---|
committer | deva <deva> | 2005-05-02 10:35:23 +0000 |
commit | 6d7b4b50ca9f159b9c422d6e7668c33ddd7992a1 (patch) | |
tree | 1fbbac941bc90c4676ad1e97c2d38ab9ae32f862 /src/decoder.h | |
parent | 6018769717141e28ed5eb84b2cfb3449f3e7334d (diff) |
Fixed wrongly showed snapshot thumbnails.
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; |