Home
last modified time | relevance | path

Searched refs:temporalGopSize (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/multimedia/av_codec/test/moduletest/vcodec/encoder/src/
H A Dtemporal_test.cpp165 int32_t temporalGopSize = 2; variable
197 int32_t temporalGopSize = 2; variable
224 int32_t temporalGopSize = 2; variable
252 int32_t temporalGopSize = 0; variable
279 int32_t temporalGopSize = 0; variable
306 int32_t temporalGopSize = 2; variable
362 int32_t temporalGopSize = 2; variable
416 int32_t temporalGopSize = 3; variable
443 int32_t temporalGopSize = 3; variable
470 int32_t temporalGopSize = 5; variable
[all …]
/ohos5.0/foundation/multimedia/av_codec/services/services/codec/server/
H A Dcodec_param_checker.cpp436 int32_t temporalGopSize; in TemporalGopSizeChecker() local
458 …l temporalGopSizeExist = format.GetIntValue(Tag::VIDEO_ENCODER_TEMPORAL_GOP_SIZE, temporalGopSize); in TemporalGopSizeChecker()
462 PrintParam(temporalGopSizeExist, Tag::VIDEO_ENCODER_TEMPORAL_GOP_SIZE, temporalGopSize); in TemporalGopSizeChecker()
463 CHECK_AND_RETURN_RET_LOG(temporalGopSize >= MIN_TEMPORAL_GOPSIZE, AVCS_ERR_INVALID_VAL, in TemporalGopSizeChecker()
465 Tag::VIDEO_ENCODER_TEMPORAL_GOP_SIZE, temporalGopSize, MIN_TEMPORAL_GOPSIZE); in TemporalGopSizeChecker()
466 CHECK_AND_RETURN_RET_LOG(temporalGopSize < gopSize, AVCS_ERR_INVALID_VAL, in TemporalGopSizeChecker()
468 Tag::VIDEO_ENCODER_TEMPORAL_GOP_SIZE, temporalGopSize, gopSize); in TemporalGopSizeChecker()
501 int32_t temporalGopSize; in UniformlyScaledReferenceChecker() local
502 …l temporalGopSizeExist = format.GetIntValue(Tag::VIDEO_ENCODER_TEMPORAL_GOP_SIZE, temporalGopSize); in UniformlyScaledReferenceChecker()
506 …CHECK_AND_RETURN_RET_LOG(temporalGopSize == MIN_TEMPORAL_GOPSIZE || temporalGopSize == DEFAULT_TEM… in UniformlyScaledReferenceChecker()
[all …]
/ohos5.0/foundation/multimedia/av_codec/test/unittest/hcodec_test/helper/
H A Dtester_codecbase.cpp212 int32_t temporalGopSize = 0; in ConfigureEncoder() local
215 temporalGopSize = 2; // 2: temporalGopSize in ConfigureEncoder()
218 temporalGopSize = 4; // 4: temporalGopSize in ConfigureEncoder()
223 fmt.PutIntValue(OHOS::Media::Tag::VIDEO_ENCODER_TEMPORAL_GOP_SIZE, temporalGopSize); in ConfigureEncoder()
/ohos5.0/foundation/multimedia/av_codec/services/engine/codec/video/hcodec/
H A Dhencoder.cpp217 int32_t temporalGopSize = 0; in SetTemperalLayer() local
218 if (!format.GetIntValue(OHOS::Media::Tag::VIDEO_ENCODER_TEMPORAL_GOP_SIZE, temporalGopSize)) { in SetTemperalLayer()
225 switch (temporalGopSize) { in SetTemperalLayer()
233 HLOGE("user set invalid temporal gop size %d", temporalGopSize); in SetTemperalLayer()