/foundation/multimedia/av_codec/frameworks/native/avcodec/ |
H A D | avcodec_audio_codec_impl.h | 44 int32_t QueueInputBuffer(uint32_t index); 48 int32_t ReleaseOutputBuffer(uint32_t index); 73 void OnInputBufferAvailable(uint32_t index, std::shared_ptr<AVBuffer> buffer) override; 74 void OnOutputBufferAvailable(uint32_t index, std::shared_ptr<AVBuffer> buffer) override;
|
H A D | avcodec_audio_decoder_impl.cpp | 120 int32_t AVCodecAudioDecoderImpl::QueueInputBuffer(uint32_t index, AVCodecBufferInfo info, AVCodecBufferFlag flag) in QueueInputBuffer() argument 124 return codecService_->QueueInputBuffer(index, info, flag); in QueueInputBuffer() 134 int32_t AVCodecAudioDecoderImpl::ReleaseOutputBuffer(uint32_t index) in ReleaseOutputBuffer() argument 138 return codecService_->ReleaseOutputBuffer(index); in ReleaseOutputBuffer()
|
/foundation/multimedia/av_codec/interfaces/inner_api/native/ |
H A D | avcodec_video_decoder.h | 105 * @param index The index of the output buffer. 116 * will report the available input buffer and the corresponding index value. Once the buffer with the specified 117 * index is submitted to the video decoder, the buffer cannot be accessed again until the {@link 118 * AVCodecCallback} callback is received again reporting that the buffer with the same index is available. 122 * @param index The index of the input buffer. 129 virtual int32_t QueueInputBuffer(uint32_t index, AVCodecBufferInfo info, AVCodecBufferFlag flag) = 0; 135 * will report the available input buffer and the corresponding index value. Once the buffer with the specified 136 * index i [all...] |
H A D | avcodec_video_encoder.h | 124 * will report the available input buffer and the corresponding index value. 126 * @param index The index of the input buffer. 133 virtual int32_t QueueInputBuffer(uint32_t index, AVCodecBufferInfo info, AVCodecBufferFlag flag) = 0; 139 * will report the available input buffer and the corresponding index value. 141 * @param index The index of the input buffer. 145 virtual int32_t QueueInputBuffer(uint32_t index) = 0; 151 * will report the available input buffer and the corresponding index value. 153 * @param index Th [all...] |
/foundation/graphic/graphic_3d/lume/LumeEngine/src/io/ |
H A D | path_tools.cpp | 47 const size_t index = uri.find(':'); in ParseUri() local 48 if (index != string_view::npos) { in ParseUri() 49 protocol = uri.substr(0, index); in ParseUri() 51 uri.remove_prefix(index + 1U); in ParseUri() 163 if (pathIn[2] == ':') { // 2: index of ':' in SplitPath()
|
/foundation/graphic/graphic_3d/lume/LumeEngine/api/core/ecs/ |
H A D | component_struct_macros.h | 33 virtual void Set(ComponentId index, const TYPE& data) = 0; \ 37 virtual TYPE Get(ComponentId index) const = 0; \ 41 virtual CORE_NS::ScopedHandle<const TYPE> Read(ComponentId index) const = 0; \ 45 virtual CORE_NS::ScopedHandle<TYPE> Write(ComponentId index) = 0; \
|
/foundation/multimedia/image_framework/plugins/common/libs/image/libgifplugin/include/ |
H A D | gif_encoder.h | 61 uint32_t WriteFrameInfo(int index); 62 uint32_t processFrame(int index); 63 uint32_t colorQuantize(int index, uint16_t width, uint16_t height, 65 uint32_t separateRGB(int index, uint16_t width, uint16_t height,
|
/foundation/multimedia/av_codec/test/unittest/hcodec_test/helper/ |
H A D | tester_capi.h | 55 static void OnNeedInputData(OH_AVCodec *codec, uint32_t index, OH_AVMemory *data, void *userData); 57 OH_AVCodec *codec, uint32_t index, OH_AVMemory *data, OH_AVCodecBufferAttr *attr, void *userData); 74 static void OnNeedInputBuffer(OH_AVCodec *codec, uint32_t index, OH_AVBuffer *buffer, void *userData); 75 static void OnNewOutputBuffer(OH_AVCodec *codec, uint32_t index, OH_AVBuffer *buffer, void *userData);
|
/foundation/multimedia/av_codec/test/fuzztest/audiodecoderreset_fuzzer/ |
H A D | audio_decoder_reset_demo.h | 85 OH_AVErrCode PushInputData(OH_AVCodec* codec, uint32_t index); 86 OH_AVErrCode FreeOutputData(OH_AVCodec* codec, uint32_t index); 89 OH_AVErrCode PushInputDataEOS(OH_AVCodec* codec, uint32_t index); 103 void HandleInputEOS(const uint32_t index);
|
/foundation/multimedia/av_codec/test/fuzztest/audioencoderreset_fuzzer/ |
H A D | audio_encoder_reset_demo.h | 87 OH_AVErrCode PushInputData(OH_AVCodec* codec, uint32_t index); 89 OH_AVErrCode PushInputDataEOS(OH_AVCodec* codec, uint32_t index); 91 OH_AVErrCode FreeOutputData(OH_AVCodec* codec, uint32_t index); 112 void HandleEOS(const uint32_t &index);
|
/foundation/multimedia/av_codec/test/unittest/demuxer_test/inner/ |
H A D | demuxer_inner_buffer_mock.cpp | 102 const uint64_t relativePresentationTimeUs, uint32_t &index) in GetIndexByRelativePresentationTimeUs() 105 return demuxer_->GetIndexByRelativePresentationTimeUs(trackIndex, relativePresentationTimeUs, index); in GetIndexByRelativePresentationTimeUs() 111 const uint32_t index, uint64_t &relativePresentationTimeUs) in GetRelativePresentationTimeUsByIndex() 114 return demuxer_->GetRelativePresentationTimeUsByIndex(trackIndex, index, relativePresentationTimeUs); in GetRelativePresentationTimeUsByIndex() 101 GetIndexByRelativePresentationTimeUs(const uint32_t trackIndex, const uint64_t relativePresentationTimeUs, uint32_t &index) GetIndexByRelativePresentationTimeUs() argument 110 GetRelativePresentationTimeUsByIndex(const uint32_t trackIndex, const uint32_t index, uint64_t &relativePresentationTimeUs) GetRelativePresentationTimeUsByIndex() argument
|
/foundation/multimedia/av_codec/test/unittest/video_test/vcodec_framework_test/stable_sample/sample/decoder/include/ |
H A D | vdec_sample.h | 60 int32_t PushInputData(uint32_t index, OH_AVCodecBufferAttr attr = {0, 0, 0, 0}); 61 int32_t ReleaseOutputData(uint32_t index); 64 int32_t HandleInputFrame(uint32_t &index, OH_AVCodecBufferAttr &attr); 65 int32_t HandleOutputFrame(uint32_t &index, OH_AVCodecBufferAttr &attr);
|
/foundation/multimedia/av_codec/test/unittest/video_test/vcodec_framework_test/stable_sample/sample/encoder/include/ |
H A D | venc_sample.h | 62 int32_t PushInputData(uint32_t index, OH_AVCodecBufferAttr attr = {0, 0, 0, 0}); 63 int32_t ReleaseOutputData(uint32_t index); 67 int32_t HandleInputFrame(uint32_t &index, OH_AVCodecBufferAttr &attr); 68 int32_t HandleOutputFrame(uint32_t &index, OH_AVCodecBufferAttr &attr);
|
/foundation/multimedia/av_codec/test/fuzztest/audiodecoderdescription_fuzzer/ |
H A D | audio_decoder_description_demo.h | 85 OH_AVErrCode PushInputData(OH_AVCodec* codec, uint32_t index); 86 OH_AVErrCode FreeOutputData(OH_AVCodec* codec, uint32_t index); 89 OH_AVErrCode PushInputDataEOS(OH_AVCodec* codec, uint32_t index); 103 void HandleInputEOS(const uint32_t index);
|
/foundation/multimedia/av_codec/test/fuzztest/audiodecoderflush_fuzzer/ |
H A D | audio_decoder_flush_demo.h | 85 OH_AVErrCode PushInputData(OH_AVCodec* codec, uint32_t index); 86 OH_AVErrCode FreeOutputData(OH_AVCodec* codec, uint32_t index); 89 OH_AVErrCode PushInputDataEOS(OH_AVCodec* codec, uint32_t index); 103 void HandleInputEOS(const uint32_t index);
|
/foundation/multimedia/av_codec/test/fuzztest/encoderconfigure_fuzzer/ |
H A D | videoenc_sample.h | 85 bool RandomEOS(uint32_t index); 86 void SetEOS(uint32_t index); 87 int32_t PushData(OH_AVMemory *buffer, uint32_t index, int32_t &result); 88 void InputDataFuzz(bool &runningFlag, uint32_t index);
|
/foundation/multimedia/av_codec/test/nativedemo/audio_demo/ |
H A D | avcodec_audio_decoder_inner_demo.h | 54 void OnInputBufferAvailable(uint32_t index, std::shared_ptr<AVSharedMemory> buffer) override; 55 void OnOutputBufferAvailable(uint32_t index, AVCodecBufferInfo info, AVCodecBufferFlag flag, 78 void HandleInputEOS(const uint32_t &index); 79 int32_t HandleNormalInput(const uint32_t &index, const int64_t &pts, const size_t &size);
|
/foundation/multimedia/av_codec/test/fuzztest/audiodecoder_fuzzer/ |
H A D | audio_decoder_demo.h | 85 OH_AVErrCode PushInputData(OH_AVCodec* codec, uint32_t index); 86 OH_AVErrCode FreeOutputData(OH_AVCodec* codec, uint32_t index); 89 OH_AVErrCode PushInputDataEOS(OH_AVCodec* codec, uint32_t index); 103 void HandleInputEOS(const uint32_t index);
|
/foundation/multimedia/av_codec/test/fuzztest/audioencoder_fuzzer/ |
H A D | audio_encoder_demo.h | 87 OH_AVErrCode PushInputData(OH_AVCodec* codec, uint32_t index); 89 OH_AVErrCode PushInputDataEOS(OH_AVCodec* codec, uint32_t index); 91 OH_AVErrCode FreeOutputData(OH_AVCodec* codec, uint32_t index); 112 void HandleEOS(const uint32_t &index);
|
/foundation/multimedia/av_codec/test/fuzztest/audioencoderflush_fuzzer/ |
H A D | audio_encoder_flush_demo.h | 87 OH_AVErrCode PushInputData(OH_AVCodec* codec, uint32_t index); 89 OH_AVErrCode PushInputDataEOS(OH_AVCodec* codec, uint32_t index); 91 OH_AVErrCode FreeOutputData(OH_AVCodec* codec, uint32_t index); 112 void HandleEOS(const uint32_t &index);
|
/foundation/multimedia/av_codec/test/fuzztest/audioencoderdescription_fuzzer/ |
H A D | audio_encoder_description_demo.h | 87 OH_AVErrCode PushInputData(OH_AVCodec* codec, uint32_t index); 89 OH_AVErrCode PushInputDataEOS(OH_AVCodec* codec, uint32_t index); 91 OH_AVErrCode FreeOutputData(OH_AVCodec* codec, uint32_t index); 112 void HandleEOS(const uint32_t &index);
|
/foundation/multimedia/media_library/frameworks/native/c_api/ |
H A D | media_userfile_client.cpp | 96 int index = sDataShareHelper_->Insert(uri, value); in Insert() local 97 return index; in Insert() 106 int index = sDataShareHelper_->InsertExt(uri, value, result); in InsertExt() local 107 return index; in InsertExt()
|
/foundation/communication/netstack/frameworks/native/http/http_client/ |
H A D | http_client_response.cpp | 56 auto index = header.find(HttpConstant::HTTP_HEADER_SEPARATOR); in ParseHeaders() local 57 if (index == std::string::npos) { in ParseHeaders() 62 headers_[CommonUtils::ToLower(CommonUtils::Strip(header.substr(0, index)))] = in ParseHeaders() 63 CommonUtils::Strip(header.substr(index + 1)); in ParseHeaders()
|
/foundation/communication/netstack/frameworks/js/builtin/fetch/src/ |
H A D | http_request_utils.cpp | 87 auto index = url.find(HttpConstant::HTTP_URL_PARAM_SEPARATOR); in EncodeUrlParam() local 88 if (index == std::string::npos) { in EncodeUrlParam() 92 std::string param = url.substr(index + 1); in EncodeUrlParam() 102 url.resize(index); in EncodeUrlParam()
|
/foundation/communication/netmanager_ext/frameworks/native/ethernetclient/src/ |
H A D | static_configuration.cpp | 49 for (uint32_t index = 0; index < size; ++index) { in MarshallingNetAddressList() 50 auto netAddr = netAddrList[index]; in MarshallingNetAddressList()
|