Home
last modified time | relevance | path

Searched defs:FrameDims (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/external/libavc/fuzzer/
H A Dsvc_enc_fuzzer.cpp135 struct FrameDims struct in Codec
137 size_t mWidth;
138 size_t mHeight;
140 FrameDims(size_t w, size_t h) : mWidth(w), mHeight(h) {} in FrameDims() function
141 FrameDims(const std::pair<size_t, size_t> &dimPair) in FrameDims() function
145 FrameDims(const FrameDims &other) : FrameDims(other.mWidth, other.mHeight) {} in FrameDims() argument
147 void operator=(const FrameDims &other) in operator =()
153 size_t getFrameSize() const { return (mWidth * mHeight * 3) / 2; }; in getFrameSize()