Lines Matching refs:whf
148 bool getPositionS3D(const Whf& whf, Dim& out);
199 bool operator==(const Whf& whf) const {
200 return whf.w == w && whf.h == h &&
201 whf.format == format;
203 bool operator!=(const Whf& whf) const {
204 return !operator==(whf);
357 whf(_whf), in PipeArgs()
366 Whf whf; member
584 inline Dim getPositionS3DImpl(const Whf& whf) in getPositionS3DImpl() argument
586 switch (whf.format & OUTPUT_3D_MASK) in getPositionS3DImpl()
590 return Dim(0, 0, whf.w/2, whf.h); in getPositionS3DImpl()
592 return Dim(0, 0, whf.w, whf.h/2); in getPositionS3DImpl()
601 whf.format); in getPositionS3DImpl()
607 inline Dim getPositionS3DImpl<utils::OV_RIGHT_SPLIT>(const Whf& whf)
609 switch (whf.format & OUTPUT_3D_MASK)
612 return Dim(whf.w/2, 0, whf.w/2, whf.h);
614 return Dim(0, whf.h/2, whf.w, whf.h/2);
616 return Dim(0, 0, whf.w, whf.h);
623 whf.format);
629 inline bool getPositionS3D(const Whf& whf, Dim& out) { in getPositionS3D() argument
630 out = getPositionS3DImpl<CHAN>(whf); in getPositionS3D()
711 void preRotateSource(const eTransform& tr, Whf& whf, Dim& srcCrop);