Searched defs:FrameDims (Results 1 – 1 of 1) sorted by relevance
135 struct FrameDims struct in Codec137 size_t mWidth;138 size_t mHeight;140 FrameDims(size_t w, size_t h) : mWidth(w), mHeight(h) {} in FrameDims() function141 FrameDims(const std::pair<size_t, size_t> &dimPair) in FrameDims() function145 FrameDims(const FrameDims &other) : FrameDims(other.mWidth, other.mHeight) {} in FrameDims() argument147 void operator=(const FrameDims &other) in operator =()153 size_t getFrameSize() const { return (mWidth * mHeight * 3) / 2; }; in getFrameSize()