Lines Matching refs:input
41 .withConstValue(new C2StreamFormatConfig::input(0u, C2FormatCompressed)) in IntfImpl()
51 .withConstValue(AllocSharedString<C2PortMimeConfig::input>( in IntfImpl()
77 .withDefault(new C2BitrateTuning::input(0u, 768000)) in IntfImpl()
84 .withConstValue(new C2StreamMaxBufferSizeInfo::input(0u, 32768)) in IntfImpl()
89 std::shared_ptr<C2StreamFormatConfig::input> mInputFormat;
91 std::shared_ptr<C2PortMimeConfig::input> mInputMediaType;
95 std::shared_ptr<C2BitrateTuning::input> mBitrate;
96 std::shared_ptr<C2StreamMaxBufferSizeInfo::input> mInputMaxBufSize;
162 work->worklets.front()->output.flags = work->input.flags; in fillEmptyWork()
164 work->worklets.front()->output.ordinal = work->input.ordinal; in fillEmptyWork()
176 work->worklets.front()->output.flags = work->input.flags; in process()
186 if (!work->input.buffers.empty()) { in process()
187 rView = work->input.buffers[0]->data().linearBlocks().front().map().get(); in process()
195 bool eos = (work->input.flags & C2FrameData::FLAG_END_OF_STREAM) != 0; in process()
196 bool codecConfig = (work->input.flags & C2FrameData::FLAG_CODEC_CONFIG) != 0; in process()
199 (int)work->input.ordinal.timestamp.peeku(), (int)work->input.ordinal.frameIndex.peeku()); in process()
215 uint8_t *input = const_cast<uint8_t *>(rView.data() + inOffset); in process() local
217 status_t decoderErr = mFLACDecoder->parseMetadata(input, inSize); in process()
289 input, inSize, output, &outSize); in process()
299 work->worklets.front()->output.flags = work->input.flags; in process()
302 work->worklets.front()->output.ordinal = work->input.ordinal; in process()