X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Flog_entry.h;h=95c4e4f1f851e31a57230722a1239ce62b1838a8;hb=d881836379172f4072ed81ea074f46b3a363a681;hp=d4992de86d999b5ce94ae3ed8996c193302a85b8;hpb=a1f7bf2d9e5610075fbd898cdf52f4f8373741f2;p=dcpomatic.git diff --git a/src/lib/log_entry.h b/src/lib/log_entry.h index d4992de86..95c4e4f1f 100644 --- a/src/lib/log_entry.h +++ b/src/lib/log_entry.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2015-2020 Carl Hetherington + Copyright (C) 2015-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,12 +18,15 @@ */ + #ifndef DCPOMATIC_LOG_ENTRY_H #define DCPOMATIC_LOG_ENTRY_H + #include #include + class LogEntry { public: @@ -31,12 +34,14 @@ public: static const int TYPE_GENERAL; static const int TYPE_WARNING; static const int TYPE_ERROR; - static const int TYPE_DEBUG_THREED; + static const int TYPE_DEBUG_THREE_D; static const int TYPE_DEBUG_ENCODE; static const int TYPE_TIMING; static const int TYPE_DEBUG_EMAIL; - static const int TYPE_DEBUG_PLAYER; + static const int TYPE_DEBUG_VIDEO_VIEW; ///< real-time video viewing (i.e. "playback") static const int TYPE_DISK; + static const int TYPE_DEBUG_PLAYER; ///< the Player class + static const int TYPE_DEBUG_AUDIO_ANALYSIS; ///< audio analysis job explicit LogEntry (int type); virtual ~LogEntry () {} @@ -54,4 +59,5 @@ private: int _type; }; + #endif