Add some parameter names in headers.
authorCarl Hetherington <cth@carlh.net>
Mon, 1 Feb 2021 00:22:58 +0000 (01:22 +0100)
committerCarl Hetherington <cth@carlh.net>
Mon, 1 Feb 2021 00:22:58 +0000 (01:22 +0100)
src/lib/dcp_video.h
src/lib/player_video.h

index 5d8b9b720a3aef0da98223f287e3668755d8f8b9..8efd680a2a1942036fadb6f19ef3895db26e21c8 100644 (file)
@@ -42,7 +42,7 @@ class PlayerVideo;
 class DCPVideo : public boost::noncopyable
 {
 public:
-       DCPVideo (std::shared_ptr<const PlayerVideo>, int, int, int, Resolution);
+       DCPVideo (std::shared_ptr<const PlayerVideo>, int index, int dcp_fps, int bandwidth, Resolution r);
        DCPVideo (std::shared_ptr<const PlayerVideo>, cxml::ConstNodePtr);
 
        dcp::ArrayData encode_locally ();
index faf5d6832637f12be510028a78568615f3275a27..569789c8cc1cdb6e6918a783ab9364e955c44cdc 100644 (file)
@@ -45,17 +45,17 @@ class PlayerVideo : public boost::noncopyable
 {
 public:
        PlayerVideo (
-               std::shared_ptr<const ImageProxy>,
-               Crop,
-               boost::optional<double>,
-               dcp::Size,
-               dcp::Size,
-               Eyes,
-               Part,
-               boost::optional<ColourConversion>,
+               std::shared_ptr<const ImageProxy> image,
+               Crop crop,
+               boost::optional<double> fade,
+               dcp::Size inter_size,
+               dcp::Size out_size,
+               Eyes eyes,
+               Part part,
+               boost::optional<ColourConversion> colour_conversion,
                VideoRange video_range,
-               std::weak_ptr<Content>,
-               boost::optional<Frame>,
+               std::weak_ptr<Content> content,
+               boost::optional<Frame> video_frame,
                bool error
                );