Home | History | Annotate | Download | only in include

Lines Matching refs:PVMFVideoResolution

70 class PVMFVideoResolution
73 PVMFVideoResolution(uint16 w, uint16 h) : width(w), height(h) {}
78 #define PVMF_RESOLUTION_NULL PVMFVideoResolution(0,0)
79 #define PVMF_RESOLUTION_SQCIF PVMFVideoResolution(128,96)
80 #define PVMF_RESOLUTION_QCIF PVMFVideoResolution(176,144)
81 #define PVMF_RESOLUTION_CIF PVMFVideoResolution(352,288)
82 #define PVMF_RESOLUTION_4CIF PVMFVideoResolution(704,576)
83 #define PVMF_RESOLUTION_16CIF PVMFVideoResolution(1408,1152)
88 PVMFVideoResolutionRange(PVMFVideoResolution first, PVMFVideoResolution last)
90 bool isFit(PVMFVideoResolution res)
94 PVMFVideoResolution iFirst;
95 PVMFVideoResolution iLast;