merge: leaks, nested seq segv, ffmpeg avi frames
[goodguy/history.git] / cinelerra-5.1 / guicast / condition.h
index 8ab4fd870c62e3de0b53a564b46440a29cda8a4a..1fd455e2e1400d42c452670e1ed2df1b45a13333 100644 (file)
@@ -30,7 +30,6 @@ public:
        Condition(int init_value = 0, const char *title = 0, int is_binary = 0);
        ~Condition();
 
-
 // Reset to init_value whether locked or not.
        void reset();
 // Block if value <= 0, then decrease value
@@ -43,9 +42,9 @@ public:
        int timed_lock(int microseconds, const char *location = 0);
        int get_value();
 
-    pthread_cond_t cond;
-    pthread_mutex_t mutex;
-    int value;
+       pthread_cond_t cond;
+       pthread_mutex_t mutex;
+       int value;
        int init_value;
        int is_binary;
        const char *title;