Allow specification of video bit rate separately for J2K and MPEG2.
[dcpomatic.git] / src / lib / video_encoding.h
index 45ee0b21eb0e8694ff069a9a76e93d7169c2df70..7c240f06f68d0996c913a7436152506dfefe7e9c 100644 (file)
 */
 
 
+#ifndef DCPOMATIC_VIDEO_ENCODING_H
+#define DCPOMATIC_VIDEO_ENCODING_H
+
+
 #include <string>
 
 
 enum class VideoEncoding
 {
        JPEG2000,
-       MPEG2
+       MPEG2,
+       COUNT
 };
 
 
 std::string video_encoding_to_string(VideoEncoding encoding);
 VideoEncoding video_encoding_from_string(std::string const& encoding);
 
+
+#endif
+