diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-05-09 15:21:30 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-05-09 15:22:20 +0100 |
| commit | 837a54744277a5252a1a69b0690305e9a669124d (patch) | |
| tree | e391cc061022e211a68a48eba37fbde4970f61e7 /src/lib/image.h | |
| parent | bb6b53bdb63754fe0cea1368f69f39a3c3cbbdfd (diff) | |
Basic video transcoding working.
Diffstat (limited to 'src/lib/image.h')
| -rw-r--r-- | src/lib/image.h | 4 |
1 files changed, 2 insertions, 2 deletions
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; }; |
