Searched refs:CodecRange (Results 1 – 2 of 2) sorted by relevance
/ohos5.0/foundation/multimedia/player_framework/interfaces/inner_api/native/ |
H A D | codec_capability.h | 28 class CodecRange { 32 CodecRange() : minVal(0), maxVal(0) {} in CodecRange() function 33 CodecRange(const int32_t &min, const int32_t &max) in CodecRange() function 44 CodecRange Create(const int32_t &min, const int32_t &max) in Create() 46 return CodecRange(min, max); in Create() 66 CodecRange bitrate; 67 CodecRange frameRate; 68 CodecRange width; 69 CodecRange height; 70 CodecRange channels;
|
/ohos5.0/foundation/multimedia/player_framework/services/engine/histreamer/recorder/ |
H A D | hirecorder_impl.cpp | 924 … encoderInfo.bitrate = CodecRange(capabilityData->bitrate.minVal, capabilityData->bitrate.maxVal); in ConvertVideoEncoderInfo() 925 …encoderInfo.frameRate = CodecRange(capabilityData->frameRate.minVal, capabilityData->frameRate.max… in ConvertVideoEncoderInfo() 926 encoderInfo.width = CodecRange(capabilityData->width.minVal, capabilityData->width.maxVal); in ConvertVideoEncoderInfo() 927 encoderInfo.height = CodecRange(capabilityData->height.minVal, capabilityData->height.maxVal); in ConvertVideoEncoderInfo() 928 encoderInfo.channels = CodecRange(); in ConvertVideoEncoderInfo() 938 … encoderInfo.bitrate = CodecRange(capabilityData->bitrate.minVal, capabilityData->bitrate.maxVal); in ConvertAudioEncoderInfo() 939 encoderInfo.frameRate = CodecRange(); in ConvertAudioEncoderInfo() 940 encoderInfo.width = CodecRange(); in ConvertAudioEncoderInfo() 941 encoderInfo.height = CodecRange(); in ConvertAudioEncoderInfo() 942 …encoderInfo.channels = CodecRange(capabilityData->channels.minVal, capabilityData->channels.maxVal… in ConvertAudioEncoderInfo()
|