Searched refs:findInt64 (Results 1 – 7 of 7) sorted by relevance
/hardware/google/av/media/eco/tests/ |
D | EcoDataTest.cpp | 162 EXPECT_TRUE(data->findInt64(ENCODER_TARGET_BITRATE_BPS, &testValue) == ECODataStatus::OK); in TEST() 167 EXPECT_EQ(data->findInt64(ENCODER_TARGET_BITRATE_BPS, &testValue), ECODataStatus::OK); in TEST() 185 EXPECT_TRUE(data->findInt64(it->first, &testValue) == ECODataStatus::OK); in TEST() 194 EXPECT_TRUE(data->findInt64("encoder-name", nullptr) != ECODataStatus::OK); in TEST() 198 EXPECT_TRUE(data->findInt64("encoder-name", &testValue) != ECODataStatus::OK); in TEST() 204 EXPECT_TRUE(data->findInt64("", &testValue) != ECODataStatus::OK); in TEST()
|
D | EcoSessionTest.cpp | 303 EXPECT_TRUE(info.findInt64(FRAME_PTS_US, &framePtsUs) == ECODataStatus::OK); in TEST_F() 343 EXPECT_TRUE(info.findInt64(FRAME_PTS_US, &framePtsUs) == ECODataStatus::OK); in TEST_F() 379 EXPECT_TRUE(info.findInt64(FRAME_PTS_US, &framePtsUs) == ECODataStatus::OK); in TEST_F() 403 EXPECT_TRUE(info.findInt64(FRAME_PTS_US, &framePtsUs) == ECODataStatus::OK); in TEST_F()
|
/hardware/google/av/media/eco/include/eco/ |
D | ECOData.h | 111 ECODataStatus findInt64(const std::string& key, int64_t* out) const;
|
/hardware/google/av/media/sfplugin/ |
D | CCodec.cpp | 725 if (msg->findInt64("repeat-previous-frame-after", &value) && value > 0) { in configure() 731 if (msg->findInt64("max-pts-gap-to-encoder", &value)) { in configure() 1405 (void)params->findInt64("time-offset-us", &config->mISConfig->mTimeOffsetUs); in setParameters() 1407 if (params->findInt64("skip-frames-before", &config->mISConfig->mStartAtUs)) { in setParameters() 1409 } else if (params->findInt64("stop-time-us", &config->mISConfig->mStopAtUs)) { in setParameters() 1417 (void)params->findInt64("drop-start-time-us", &config->mISConfig->mSuspendAtUs); in setParameters()
|
D | CCodecBufferChannel.cpp | 1616 CHECK(buffer->meta()->findInt64("timeUs", &timeUs)); in queueInputBufferInternal() 2005 (void)buffer->meta()->findInt64("timeUs", &mediaTimeUs); in renderOutputBuffer()
|
/hardware/google/av/media/eco/ |
D | ECOData.cpp | 254 ECODataStatus ECOData::findInt64(const std::string& key, int64_t* out) const { in findInt64() function in android::media::eco::ECOData
|
/hardware/google/av/media/codecs/cmds/ |
D | codec2.cpp | 316 CHECK(meta.findInt64(kKeyTime, ×tamp)); in play()
|