summaryrefslogtreecommitdiff
path: root/src/picture_asset.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/picture_asset.h')
-rw-r--r--src/picture_asset.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/picture_asset.h b/src/picture_asset.h
index cef5367b..8883e538 100644
--- a/src/picture_asset.h
+++ b/src/picture_asset.h
@@ -22,6 +22,7 @@
namespace libdcp
{
+/** An asset made up of JPEG2000 files */
class PictureAsset : public Asset
{
public:
@@ -30,7 +31,9 @@ public:
void write_to_cpl (std::ostream &) const;
private:
+ /** picture width in pixels */
int _width;
+ /** picture height in pixels */
int _height;
};