Lines Matching refs:input
40 .withConstValue(new C2StreamFormatConfig::input(0u, C2FormatCompressed)) in IntfImpl()
50 .withConstValue(AllocSharedString<C2PortMimeConfig::input>( in IntfImpl()
76 .withDefault(new C2BitrateTuning::input(0u, 13200)) in IntfImpl()
83 ….withConstValue(new C2StreamMaxBufferSizeInfo::input(0u, 1024 / MSGSM_IN_FRM_SZ * MSGSM_IN_FRM_SZ)) in IntfImpl()
88 std::shared_ptr<C2StreamFormatConfig::input> mInputFormat;
90 std::shared_ptr<C2PortMimeConfig::input> mInputMediaType;
94 std::shared_ptr<C2BitrateTuning::input> mBitrate;
95 std::shared_ptr<C2StreamMaxBufferSizeInfo::input> mInputMaxBufSize;
180 work->worklets.front()->output.flags = work->input.flags; in process()
187 bool eos = ((work->input.flags & C2FrameData::FLAG_END_OF_STREAM) != 0); in process()
191 if (!work->input.buffers.empty()) { in process()
192 rView = work->input.buffers[0]->data().linearBlocks().front().map().get(); in process()
202 work->worklets.front()->output.flags = work->input.flags; in process()
204 work->worklets.front()->output.ordinal = work->input.ordinal; in process()
212 (int)work->input.ordinal.timestamp.peeku(), (int)work->input.ordinal.frameIndex.peeku()); in process()
231 uint8_t *input = const_cast<uint8_t *>(rView.data() + inOffset); in process() local
232 size_t outSize = decodeGSM(mGsm, output, outCapacity, input, inSize); in process()
240 work->worklets.front()->output.flags = work->input.flags; in process()
243 work->worklets.front()->output.ordinal = work->input.ordinal; in process()