Home
last modified time | relevance | path

Searched refs:mfxRange32U (Results 1 – 11 of 11) sorted by relevance

/dports/multimedia/onevpl/oneVPL-2022.0.6/api/vpl/
H A Dmfxcommon.h266 mfxRange32U Width; /*!< Range of supported image widths. */
267 mfxRange32U Height; /*!< Range of supported image heights. */
300 mfxRange32U Width; /*!< Range of supported image widths. */
301 mfxRange32U Height; /*!< Range of supported image heights. */
328 mfxRange32U Width; /*!< Range of supported image widths. */
329 mfxRange32U Height; /*!< Range of supported image heights. */
H A Dmfxdefs.h238 } mfxRange32U; typedef
/dports/multimedia/onevpl/oneVPL-2022.0.6/dispatcher/vpl/
H A Dmfx_dispatcher_vpl_config.cpp886 mfxRange32U width = {}; in CheckPropsDec()
888 width = *((mfxRange32U *)(cfgPropsAll[ePropDec_Width].Data.Ptr)); in CheckPropsDec()
896 mfxRange32U height = {}; in CheckPropsDec()
898 height = *((mfxRange32U *)(cfgPropsAll[ePropDec_Height].Data.Ptr)); in CheckPropsDec()
932 mfxRange32U width = {}; in CheckPropsEnc()
934 width = *((mfxRange32U *)(cfgPropsAll[ePropEnc_Width].Data.Ptr)); in CheckPropsEnc()
942 mfxRange32U height = {}; in CheckPropsEnc()
944 height = *((mfxRange32U *)(cfgPropsAll[ePropEnc_Height].Data.Ptr)); in CheckPropsEnc()
977 mfxRange32U width = {}; in CheckPropsVPP()
979 width = *((mfxRange32U *)(cfgPropsAll[ePropVPP_Width].Data.Ptr)); in CheckPropsVPP()
[all …]
H A Dmfx_dispatcher_vpl.h196 mfxRange32U Width;
197 mfxRange32U Height;
207 mfxRange32U Width;
208 mfxRange32U Height;
216 mfxRange32U Width;
217 mfxRange32U Height;
322 mfxRange32U m_propRange32U[NUM_PROP_RANGES];
/dports/multimedia/onevpl/oneVPL-2022.0.6/api/vpl/preview/
H A Doption_tree.hpp347 VPL_OPT_TREE_PROPERTY(mfxRange32U, mfxRange32U, width) in VPL_OPT_TREE_PROPERTY()
350 VPL_OPT_TREE_PROPERTY(mfxRange32U, mfxRange32U, height) in VPL_OPT_TREE_PROPERTY()
463 VPL_OPT_TREE_PROPERTY(mfxRange32U, mfxRange32U, width) in VPL_OPT_TREE_PROPERTY()
466 VPL_OPT_TREE_PROPERTY(mfxRange32U, mfxRange32U, height) in VPL_OPT_TREE_PROPERTY()
H A Doptions.hpp401 frame_size(mfxRange32U &width, mfxRange32U &height) { in frame_size()
/dports/multimedia/onevpl/oneVPL-2022.0.6/preview/python/binding/
H A Doptions.cpp60 DPROP(frame_size, mfxRange32U &, mfxRange32U &); in init_options()
/dports/multimedia/onevpl/oneVPL-2022.0.6/dispatcher/test/unit/src/
H A Ddispatcher_sw_multiprop.cpp63 static const mfxRange32U cpuRangeValid = { 64, 4096, 8 };
64 static const mfxRange32U cpuRangeInvalidMin = { 32, 4096, 8 };
65 static const mfxRange32U cpuRangeInvalidMax = { 64, 9000, 8 };
66 static const mfxRange32U cpuRangeInvalidStep = { 64, 4096, 4 };
/dports/multimedia/onevpl/oneVPL-2022.0.6/preview/cplusplus/test/test-prop-cpp/src/
H A Dmain.cpp100 mfxRange32U width{ 10, 10, 1 }; in TestProperty()
101 mfxRange32U height{ 20, 20, 1 }; in TestProperty()
/dports/multimedia/onevpl/oneVPL-2022.0.6/api/vpl/preview/detail/
H A Dvariant.hpp116 void type_init(mfxRange32U &t) { in type_init()
H A Dstring_helpers.hpp461 inline std::ostream& operator<<(std::ostream& out, const mfxRange32U& v) { in operator <<()