Rename j2k_bandwidth -> video_bit_rate.
[dcpomatic.git] / src / lib / dcp_video.h
index d07c8322b56a456de6ddd1417eca3bdcd3e960ee..92c155f0c1d915399abfded39ea6c1158b3e5ceb 100644 (file)
@@ -49,7 +49,7 @@ class PlayerVideo;
 class DCPVideo
 {
 public:
-       DCPVideo (std::shared_ptr<const PlayerVideo>, int index, int dcp_fps, int bandwidth, Resolution r);
+       DCPVideo(std::shared_ptr<const PlayerVideo>, int index, int dcp_fps, int64_t bit_rate, Resolution r);
        DCPVideo (std::shared_ptr<const PlayerVideo>, cxml::ConstNodePtr);
 
        DCPVideo (DCPVideo const&) = default;
@@ -78,7 +78,7 @@ private:
        std::shared_ptr<const PlayerVideo> _frame;
        int _index;                      ///< frame index within the DCP's intrinsic duration
        int _frames_per_second;          ///< Frames per second that we will use for the DCP
-       int _j2k_bandwidth;              ///< J2K bandwidth to use
+       int64_t _video_bit_rate;         ///< Video bit rate to use
        Resolution _resolution;          ///< Resolution (2K or 4K)
 };