diff --git a/mythtv/libs/libmythtv/mythframe.h b/mythtv/libs/libmythtv/mythframe.h
index 444b676..f27da5b 100644
|
a
|
b
|
static inline void init(VideoFrame *vf, VideoFrameType _codec,
|
| 95 | 95 | const int *p = 0, |
| 96 | 96 | const int *o = 0, |
| 97 | 97 | float _aspect = -1.0f, double _rate = -1.0f, |
| 98 | | int _aligned = 64) MUNUSED; |
| | 98 | int _aligned = 0) MUNUSED; |
| 99 | 99 | static inline void clear(VideoFrame *vf); |
| 100 | 100 | static inline bool compatible(const VideoFrame *a, |
| 101 | 101 | const VideoFrame *b) MUNUSED; |
| … |
… |
static inline int bitsperpixel(VideoFrameType type)
|
| 284 | 284 | } |
| 285 | 285 | |
| 286 | 286 | static inline uint buffersize(VideoFrameType type, int width, int height, |
| 287 | | int _aligned = 64) |
| | 287 | int _aligned = 16) |
| 288 | 288 | { |
| 289 | 289 | int type_bpp = bitsperpixel(type); |
| 290 | 290 | uint bpp = type_bpp / 4; /* bits per pixel div common factor */ |
diff --git a/mythtv/libs/libmythtv/videobuffers.h b/mythtv/libs/libmythtv/videobuffers.h
index 14fed78..b1f93c1 100644
|
a
|
b
|
class YUVInfo
|
| 47 | 47 | { |
| 48 | 48 | public: |
| 49 | 49 | YUVInfo(uint w, uint h, uint size, const int *p, const int *o, |
| 50 | | int aligned = 64); |
| | 50 | int aligned = 0); |
| 51 | 51 | |
| 52 | 52 | public: |
| 53 | 53 | uint width; |