diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-04-05 23:17:03 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-04-22 13:03:04 +0200 |
| commit | 21ebc2365dd7a66c05d130dc87861f7399ae834b (patch) | |
| tree | ee1feebe6e0cf10dc5d4ecddbe9ea9ccb9a6b9d8 /src/lib/video_encoding.h | |
| parent | 4f0d027f1964d0c011f89b5706fbaf654955ba2d (diff) | |
Allow specification of video bit rate separately for J2K and MPEG2.
Diffstat (limited to 'src/lib/video_encoding.h')
| -rw-r--r-- | src/lib/video_encoding.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/lib/video_encoding.h b/src/lib/video_encoding.h index 45ee0b21e..7c240f06f 100644 --- a/src/lib/video_encoding.h +++ b/src/lib/video_encoding.h @@ -19,16 +19,24 @@ */ +#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 + |
