HomeSort by relevance Sort by last modified time
    Searched refs:mIntf (Results 1 - 25 of 53) sorted by null

1 2 3

  /hardware/google/av/codec2/hidl/1.0/utils/include/codec2/hidl/1.0/
Configurable.h 87 std::unique_ptr<ConfigurableC2Intf> mIntf;
100 Configurable(const sp<CachedConfigurable>& intf): mIntf(intf) {
104 return mIntf->init(store);
111 return mIntf->getName(_hidl_cb);
119 return mIntf->query(indices, mayBlock, _hidl_cb);
127 return mIntf->config(inParams, mayBlock, _hidl_cb);
135 return mIntf->querySupportedParams(start, count, _hidl_cb);
143 return mIntf->querySupportedValues(inFields, mayBlock, _hidl_cb);
147 sp<CachedConfigurable> mIntf;
  /hardware/google/av/codec2/hidl/1.0/utils/
Configurable.cpp 37 mIntf(std::move(intf)) {
42 c2_status_t init = mIntf->querySupportedParams(&mSupportedParams);
49 _hidl_cb(mIntf->getName());
62 c2_status_t c2res = mIntf->query(
89 c2_status_t c2res = mIntf->config(
150 c2_status_t c2res = mIntf->querySupportedValues(
Component.cpp 46 mIntf(intf) {
55 return mIntf->config_vb(params, mayBlock, failures);
64 return mIntf->query_vb({}, indices, mayBlock, params);
71 return mIntf->querySupportedParams_nb(params);
78 return mIntf->querySupportedValues_vb(fields, mayBlock);
82 std::shared_ptr<C2ComponentInterface> mIntf;
  /hardware/google/av/media/codecs/raw/
C2SoftRawDec.h 45 std::shared_ptr<IntfImpl> mIntf;
  /external/v4l2_codec2/tests/
C2VDACompIntf_test.cpp 40 mIntf = std::shared_ptr<C2ComponentInterface>(new SimpleInterface<C2VDAComponent::IntfImpl>(
68 std::shared_ptr<C2ComponentInterface> mIntf;
88 //ASSERT_EQ(C2_BAD_VALUE, mIntf->config_vb(params, C2_DONT_BLOCK, &failures));
89 mIntf->config_vb(params, C2_DONT_BLOCK, &failures);
100 ASSERT_EQ(C2_OK, mIntf->query_vb(stackParams, {}, C2_DONT_BLOCK, nullptr));
107 ASSERT_EQ(C2_OK, mIntf->query_vb(stackParams, {}, C2_DONT_BLOCK, nullptr));
117 ASSERT_EQ(C2_OK, mIntf->query_vb({}, {index}, C2_DONT_BLOCK, &heapParams));
126 ASSERT_EQ(C2_OK, mIntf->query_vb({}, {index}, C2_DONT_BLOCK, &heapParams));
135 ASSERT_EQ(C2_OK, mIntf->config_vb(params, C2_DONT_BLOCK, &failures));
142 ASSERT_EQ(C2_OK, mIntf->query_vb(stackParams, {}, C2_DONT_BLOCK, nullptr))
    [all...]
  /hardware/google/av/media/codecs/mpeg4_h263/
C2SoftMpeg4Enc.cpp 150 mIntf(intfImpl),
239 if (mIntf->getFrameRate() == 0) {
245 mEncParams->encWidth[0] = mIntf->getWidth();
246 mEncParams->encHeight[0] = mIntf->getHeight();
247 mEncParams->encFrameRate[0] = mIntf->getFrameRate();
256 mEncParams->tickPerSrc = mEncParams->timeIncRes / mIntf->getFrameRate();
257 mEncParams->bitRate[0] = mIntf->getBitrate();
264 if (mIntf->getWidth() % 16 != 0 || mIntf->getHeight() % 16 != 0) {
266 mIntf->getWidth(), mIntf->getHeight())
    [all...]
C2SoftMpeg4Dec.h 56 std::shared_ptr<IntfImpl> mIntf;
C2SoftMpeg4Enc.h 53 std::shared_ptr<IntfImpl> mIntf;
  /hardware/google/av/media/codecs/aac/
C2SoftAacEnc.h 47 std::shared_ptr<IntfImpl> mIntf;
C2SoftAacEnc.cpp 106 mIntf(intfImpl),
195 mIntf->getSampleRate(), mIntf->getChannelCount(), mIntf->getBitrate(), mSBRMode, mSBRRatio);
202 if (AACENC_OK != aacEncoder_SetParam(mAACEncoder, AACENC_SAMPLERATE, mIntf->getSampleRate())) {
206 if (AACENC_OK != aacEncoder_SetParam(mAACEncoder, AACENC_BITRATE, mIntf->getBitrate())) {
211 getChannelMode(mIntf->getChannelCount()))) {
252 uint32_t sampleRate = mIntf->getSampleRate();
253 uint32_t channelCount = mIntf->getChannelCount();
266 uint32_t bitrate = mIntf->getBitrate()
    [all...]
C2SoftAacDec.h 52 std::shared_ptr<IntfImpl> mIntf;
  /hardware/google/av/media/codecs/amr_nb_wb/
C2SoftAmrDec.h 50 std::shared_ptr<IntfImpl> mIntf;
C2SoftAmrNbEnc.h 47 std::shared_ptr<IntfImpl> mIntf;
C2SoftAmrWbEnc.h 47 std::shared_ptr<IntfImpl> mIntf;
  /hardware/google/av/media/codecs/flac/
C2SoftFlacDec.h 51 std::shared_ptr<IntfImpl> mIntf;
C2SoftFlacEnc.h 64 std::shared_ptr<IntfImpl> mIntf;
C2SoftFlacEnc.cpp 98 mIntf(intfImpl),
219 uint32_t sampleRate = mIntf->getSampleRate();
220 uint32_t channelCount = mIntf->getChannelCount();
330 ALOGV("%s numChannel=%d, sampleRate=%d", __func__, mIntf->getChannelCount(), mIntf->getSampleRate());
338 ok = ok && FLAC__stream_encoder_set_channels(mFlacStreamEncoder, mIntf->getChannelCount());
339 ok = ok && FLAC__stream_encoder_set_sample_rate(mFlacStreamEncoder, mIntf->getSampleRate());
  /hardware/google/av/media/codecs/g711/
C2SoftG711Dec.h 45 std::shared_ptr<IntfImpl> mIntf;
  /hardware/google/av/media/codecs/gsm/
C2SoftGsmDec.h 55 std::shared_ptr<IntfImpl> mIntf;
  /hardware/google/av/media/codecs/vorbis/
C2SoftVorbisDec.h 53 std::shared_ptr<IntfImpl> mIntf;
  /hardware/google/av/media/codecs/vpx/
C2SoftVpxEnc.cpp 51 mIntf(intfImpl),
137 mCodecConfiguration->g_w = mIntf->getWidth();
138 mCodecConfiguration->g_h = mIntf->getHeight();
147 mCodecConfiguration->rc_target_bitrate = (mIntf->getBitrate() + 500) / 1000;
270 ((uint32_t)mIntf->getFrameRate() >> 1) / 10;
294 uint32_t width = mIntf->getWidth();
295 uint32_t height = mIntf->getHeight();
435 if (inBuffer.width() != mIntf->getWidth() ||
436 inBuffer.height() != mIntf->getHeight()) {
438 inBuffer.width(), mIntf->getWidth(), inBuffer.height()
    [all...]
C2SoftVpxDec.h 53 std::shared_ptr<IntfImpl> mIntf;
  /hardware/google/av/media/codecs/mp3/
C2SoftMp3Dec.h 58 std::shared_ptr<IntfImpl> mIntf;
  /hardware/google/av/media/codecs/opus/
C2SoftOpusDec.h 61 std::shared_ptr<IntfImpl> mIntf;
  /hardware/google/av/media/codecs/xaac/
C2SoftXaacDec.h 63 std::shared_ptr<IntfImpl> mIntf;

Completed in 806 milliseconds

1 2 3