From 605389f7c3af2cdf1ec457ee78709cf8a5bb90d9 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 1 Feb 2021 01:22:58 +0100 Subject: [PATCH] Add some parameter names in headers. --- src/lib/dcp_video.h | 2 +- src/lib/player_video.h | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/lib/dcp_video.h b/src/lib/dcp_video.h index 5d8b9b720..8efd680a2 100644 --- a/src/lib/dcp_video.h +++ b/src/lib/dcp_video.h @@ -42,7 +42,7 @@ class PlayerVideo; class DCPVideo : public boost::noncopyable { public: - DCPVideo (std::shared_ptr, int, int, int, Resolution); + DCPVideo (std::shared_ptr, int index, int dcp_fps, int bandwidth, Resolution r); DCPVideo (std::shared_ptr, cxml::ConstNodePtr); dcp::ArrayData encode_locally (); diff --git a/src/lib/player_video.h b/src/lib/player_video.h index faf5d6832..569789c8c 100644 --- a/src/lib/player_video.h +++ b/src/lib/player_video.h @@ -45,17 +45,17 @@ class PlayerVideo : public boost::noncopyable { public: PlayerVideo ( - std::shared_ptr, - Crop, - boost::optional, - dcp::Size, - dcp::Size, - Eyes, - Part, - boost::optional, + std::shared_ptr image, + Crop crop, + boost::optional fade, + dcp::Size inter_size, + dcp::Size out_size, + Eyes eyes, + Part part, + boost::optional colour_conversion, VideoRange video_range, - std::weak_ptr, - boost::optional, + std::weak_ptr content, + boost::optional video_frame, bool error ); -- 2.30.2