summaryrefslogtreecommitdiff
path: root/src/lib/player_video.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-02-01 01:22:58 +0100
committerCarl Hetherington <cth@carlh.net>2021-02-01 01:22:58 +0100
commit605389f7c3af2cdf1ec457ee78709cf8a5bb90d9 (patch)
tree6dc1de9bde83f3bc7e972458bcb7186b15b6b064 /src/lib/player_video.h
parent497106109e36b5ed16b4c37b46a1a010330e76d8 (diff)
Add some parameter names in headers.
Diffstat (limited to 'src/lib/player_video.h')
-rw-r--r--src/lib/player_video.h20
1 files changed, 10 insertions, 10 deletions
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<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
);