TuttleOFX  1
Jpeg2000WriterDefinitions.hpp
Go to the documentation of this file.
00001 #ifndef _TUTTLE_PLUGIN_JPEG2000_WRITER_DEFINITIONS_HPP_
00002 #define _TUTTLE_PLUGIN_JPEG2000_WRITER_DEFINITIONS_HPP_
00003 
00004 #include <tuttle/plugin/context/WriterDefinition.hpp>
00005 #include <tuttle/plugin/global.hpp>
00006 
00007 
00008 namespace tuttle {
00009 namespace plugin {
00010 namespace jpeg2000 {
00011 namespace writer {
00012 
00013 enum ETuttlePluginBitDepth
00014 {
00015         eTuttlePluginBitDepthAuto = 0,
00016         eTuttlePluginBitDepth8,
00017         eTuttlePluginBitDepth12,
00018         eTuttlePluginBitDepth16,
00019         eTuttlePluginBitDepth32
00020 };
00021 
00022 static const std::string kParamCinemaProfil        = "cinemaProfil";
00023 
00024 static const std::string kParamCinemaProfilNoDigit = "notDigt Not Digital Cinema";
00025 static const std::string kParamCinemaProfil2k24fps = "2k24fps 2K Digital Cinema at 24 fps";
00026 static const std::string kParamCinemaProfil2k48fps = "2k48fps 2K Digital Cinema at 48 fps";
00027 static const std::string kParamCinemaProfil4k24fps = "4k24fps 4K Digital Cinema at 24 fps";
00028 
00029 static const std::string kParamLossless            = "lossless";
00030 
00031 }
00032 }
00033 }
00034 }
00035 
00036 #endif