From 837a54744277a5252a1a69b0690305e9a669124d Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 9 May 2017 15:21:30 +0100 Subject: Basic video transcoding working. --- src/lib/image.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib/image.h') diff --git a/src/lib/image.h b/src/lib/image.h index 84871aae2..cdad28c20 100644 --- a/src/lib/image.h +++ b/src/lib/image.h @@ -87,8 +87,8 @@ private: dcp::Size _size; AVPixelFormat _pixel_format; ///< FFmpeg's way of describing the pixel format of this Image uint8_t** _data; ///< array of pointers to components - int* _line_size; ///< array of sizes of the data in each line, in pixels (without any alignment padding bytes) - int* _stride; ///< array of strides for each line (including any alignment padding bytes) + int* _line_size; ///< array of sizes of the data in each line, in bytes (without any alignment padding bytes) + int* _stride; ///< array of strides for each line, in bytes (including any alignment padding bytes) bool _aligned; int _extra_pixels; }; -- cgit v1.2.3