Home
last modified time | relevance | path

Searched refs:Decoded (Results 1 – 25 of 48) sorted by relevance

12

/external/webrtc/api/video_codecs/
Dvideo_decoder.cc15 int32_t DecodedImageCallback::Decoded(VideoFrame& decodedImage, in Decoded() function in webrtc::DecodedImageCallback
18 return Decoded(decodedImage); in Decoded()
21 void DecodedImageCallback::Decoded(VideoFrame& decodedImage, in Decoded() function in webrtc::DecodedImageCallback
24 Decoded(decodedImage, decode_time_ms.value_or(-1)); in Decoded()
Dvideo_decoder.h29 virtual int32_t Decoded(VideoFrame& decodedImage) = 0;
34 virtual int32_t Decoded(VideoFrame& decodedImage, int64_t decode_time_ms);
38 virtual void Decoded(VideoFrame& decodedImage,
/external/webrtc/test/testsupport/
Divf_video_frame_generator.cc110 int32_t IvfVideoFrameGenerator::DecodedCallback::Decoded( in Decoded() function in webrtc::test::IvfVideoFrameGenerator::DecodedCallback
112 Decoded(decoded_image, 0, 0); in Decoded()
115 int32_t IvfVideoFrameGenerator::DecodedCallback::Decoded( in Decoded() function in webrtc::test::IvfVideoFrameGenerator::DecodedCallback
118 Decoded(decoded_image, decode_time_ms, 0); in Decoded()
121 void IvfVideoFrameGenerator::DecodedCallback::Decoded( in Decoded() function in webrtc::test::IvfVideoFrameGenerator::DecodedCallback
Divf_video_frame_generator.h45 int32_t Decoded(VideoFrame& decoded_image) override;
46 int32_t Decoded(VideoFrame& decoded_image, int64_t decode_time_ms) override;
47 void Decoded(VideoFrame& decoded_image,
/external/webrtc/test/pc/e2e/analyzer/video/
Dquality_analyzing_video_decoder.cc148 int32_t QualityAnalyzingVideoDecoder::DecoderCallback::Decoded( in Decoded() function in webrtc::webrtc_pc_e2e::QualityAnalyzingVideoDecoder::DecoderCallback
155 return delegate_callback_->Decoded(decodedImage); in Decoded()
158 int32_t QualityAnalyzingVideoDecoder::DecoderCallback::Decoded( in Decoded() function in webrtc::webrtc_pc_e2e::QualityAnalyzingVideoDecoder::DecoderCallback
165 return delegate_callback_->Decoded(decodedImage, decode_time_ms); in Decoded()
168 void QualityAnalyzingVideoDecoder::DecoderCallback::Decoded( in Decoded() function in webrtc::webrtc_pc_e2e::QualityAnalyzingVideoDecoder::DecoderCallback
176 delegate_callback_->Decoded(decodedImage, decode_time_ms, qp); in Decoded()
191 delegate_callback_->Decoded(dummy_frame, absl::nullopt, absl::nullopt); in IrrelevantSimulcastStreamDecoded()
Dquality_analyzing_video_decoder.h84 int32_t Decoded(VideoFrame& decodedImage) override;
85 int32_t Decoded(VideoFrame& decodedImage, int64_t decode_time_ms) override;
86 void Decoded(VideoFrame& decodedImage,
/external/webrtc/api/test/
Dmock_video_decoder.h22 Decoded,
26 Decoded,
31 Decoded,
/external/llvm/unittests/Support/
DConvertUTFTest.cpp157 std::vector<UTF32> Decoded(S.size(), 0); in ConvertUTF8ToUnicodeScalarsLenient() local
158 UTF32 *TargetStart = Decoded.data(); in ConvertUTF8ToUnicodeScalarsLenient()
162 Decoded.data() + Decoded.size(), lenientConversion); in ConvertUTF8ToUnicodeScalarsLenient()
164 Decoded.resize(TargetStart - Decoded.data()); in ConvertUTF8ToUnicodeScalarsLenient()
166 return std::make_pair(ErrorCode, Decoded); in ConvertUTF8ToUnicodeScalarsLenient()
174 std::vector<UTF32> Decoded(S.size(), 0); in ConvertUTF8ToUnicodeScalarsPartialLenient() local
175 UTF32 *TargetStart = Decoded.data(); in ConvertUTF8ToUnicodeScalarsPartialLenient()
179 Decoded.data() + Decoded.size(), lenientConversion); in ConvertUTF8ToUnicodeScalarsPartialLenient()
181 Decoded.resize(TargetStart - Decoded.data()); in ConvertUTF8ToUnicodeScalarsPartialLenient()
183 return std::make_pair(ErrorCode, Decoded); in ConvertUTF8ToUnicodeScalarsPartialLenient()
[all …]
/external/llvm-project/llvm/unittests/Support/
DConvertUTFTest.cpp154 std::vector<UTF32> Decoded(S.size(), 0); in ConvertUTF8ToUnicodeScalarsLenient() local
155 UTF32 *TargetStart = Decoded.data(); in ConvertUTF8ToUnicodeScalarsLenient()
159 Decoded.data() + Decoded.size(), lenientConversion); in ConvertUTF8ToUnicodeScalarsLenient()
161 Decoded.resize(TargetStart - Decoded.data()); in ConvertUTF8ToUnicodeScalarsLenient()
163 return std::make_pair(ErrorCode, Decoded); in ConvertUTF8ToUnicodeScalarsLenient()
171 std::vector<UTF32> Decoded(S.size(), 0); in ConvertUTF8ToUnicodeScalarsPartialLenient() local
172 UTF32 *TargetStart = Decoded.data(); in ConvertUTF8ToUnicodeScalarsPartialLenient()
176 Decoded.data() + Decoded.size(), lenientConversion); in ConvertUTF8ToUnicodeScalarsPartialLenient()
178 Decoded.resize(TargetStart - Decoded.data()); in ConvertUTF8ToUnicodeScalarsPartialLenient()
180 return std::make_pair(ErrorCode, Decoded); in ConvertUTF8ToUnicodeScalarsPartialLenient()
[all …]
/external/webrtc/modules/video_coding/codecs/test/
Dvideoprocessor.h149 int32_t Decoded(webrtc::VideoFrame& image) override;
151 int32_t Decoded(webrtc::VideoFrame& image, in Decoded() function
153 return Decoded(image); in Decoded()
156 void Decoded(webrtc::VideoFrame& image, in Decoded() function
159 Decoded(image); in Decoded()
Dvideo_codec_unittest.h57 int32_t Decoded(VideoFrame& frame) override { in Decoded() function
61 int32_t Decoded(VideoFrame& frame, int64_t decode_time_ms) override { in Decoded() function
65 void Decoded(VideoFrame& frame,
/external/webrtc/modules/video_coding/
Dgeneric_decoder.h51 int32_t Decoded(VideoFrame& decodedImage) override;
52 int32_t Decoded(VideoFrame& decodedImage, int64_t decode_time_ms) override;
53 void Decoded(VideoFrame& decodedImage,
Dgeneric_decoder.cc59 int32_t VCMDecodedFrameCallback::Decoded(VideoFrame& decodedImage) { in Decoded() function in webrtc::VCMDecodedFrameCallback
62 return Decoded(decodedImage, -1); in Decoded()
65 int32_t VCMDecodedFrameCallback::Decoded(VideoFrame& decodedImage, in Decoded() function in webrtc::VCMDecodedFrameCallback
67 Decoded(decodedImage, in Decoded()
74 void VCMDecodedFrameCallback::Decoded(VideoFrame& decodedImage, in Decoded() function in webrtc::VCMDecodedFrameCallback
/external/gwp_asan/gwp_asan/
Dstack_trace_compressor.cpp62 uintptr_t Decoded = Value >> 1; in zigzagDecode() local
64 return Decoded; in zigzagDecode()
65 return ~Decoded; in zigzagDecode()
/external/llvm-project/compiler-rt/lib/gwp_asan/
Dstack_trace_compressor.cpp62 uintptr_t Decoded = Value >> 1; in zigzagDecode() local
64 return Decoded; in zigzagDecode()
65 return ~Decoded; in zigzagDecode()
/external/webrtc/modules/video_coding/codecs/multiplex/
Dmultiplex_decoder_adapter.cc37 void Decoded(VideoFrame& decoded_image, in Decoded() function in webrtc::MultiplexDecoderAdapter::AdapterDecodedImageCallback
42 adapter_->Decoded(stream_idx_, &decoded_image, decode_time_ms, qp); in Decoded()
44 int32_t Decoded(VideoFrame& decoded_image) override { in Decoded() function in webrtc::MultiplexDecoderAdapter::AdapterDecodedImageCallback
48 int32_t Decoded(VideoFrame& decoded_image, int64_t decode_time_ms) override { in Decoded() function in webrtc::MultiplexDecoderAdapter::AdapterDecodedImageCallback
180 void MultiplexDecoderAdapter::Decoded(AlphaCodecStream stream_idx, in Decoded() function in webrtc::MultiplexDecoderAdapter
266 decoded_complete_callback_->Decoded(merged_image, decode_time_ms, qp); in MergeAlphaImages()
/external/webrtc/video/
Dvideo_stream_decoder_impl.cc283 int32_t VideoStreamDecoderImpl::DecodeCallbacks::Decoded( in Decoded() function in webrtc::VideoStreamDecoderImpl::DecodeCallbacks
285 Decoded(decoded_image, absl::nullopt, absl::nullopt); in Decoded()
289 int32_t VideoStreamDecoderImpl::DecodeCallbacks::Decoded( in Decoded() function in webrtc::VideoStreamDecoderImpl::DecodeCallbacks
292 Decoded(decoded_image, decode_time_ms, absl::nullopt); in Decoded()
296 void VideoStreamDecoderImpl::DecodeCallbacks::Decoded( in Decoded() function in webrtc::VideoStreamDecoderImpl::DecodeCallbacks
Dvideo_stream_decoder_impl.h49 int32_t Decoded(VideoFrame& decodedImage) override;
50 int32_t Decoded(VideoFrame& decodedImage, int64_t decode_time_ms) override;
51 void Decoded(VideoFrame& decodedImage,
/external/llvm-project/llvm/unittests/DebugInfo/GSYM/
DGSYMTest.cpp171 llvm::Expected<FunctionInfo> Decoded = FunctionInfo::decode(Data, BaseAddr); in TestFunctionInfoDecodeError() local
173 ASSERT_FALSE((bool)Decoded); in TestFunctionInfoDecodeError()
175 checkError(ExpectedErrorMsg, Decoded.takeError()); in TestFunctionInfoDecodeError()
257 llvm::Expected<FunctionInfo> Decoded = FunctionInfo::decode(Data, in TestFunctionInfoEncodeDecode() local
260 ASSERT_TRUE((bool)Decoded); in TestFunctionInfoEncodeDecode()
262 EXPECT_EQ(FI, Decoded.get()); in TestFunctionInfoEncodeDecode()
333 llvm::Expected<InlineInfo> Decoded = InlineInfo::decode(Data, BaseAddr); in TestInlineInfoEncodeDecode() local
335 ASSERT_TRUE((bool)Decoded); in TestInlineInfoEncodeDecode()
337 EXPECT_EQ(Inline, Decoded.get()); in TestInlineInfoEncodeDecode()
345 llvm::Expected<InlineInfo> Decoded = InlineInfo::decode(Data, BaseAddr); in TestInlineInfoDecodeError() local
[all …]
/external/webrtc/test/
Dfake_decoder.cc68 callback_->Decoded(frame); in Decode()
73 callback_->Decoded(copy); in Decode()
/external/webrtc/api/video_codecs/test/
Dvideo_decoder_software_fallback_wrapper_unittest.cc187 int32_t Decoded(VideoFrame& decodedImage) override { return 0; } in TEST_F() function in webrtc::TEST_F::FakeDecodedImageCallback
188 int32_t Decoded(webrtc::VideoFrame& decodedImage, in TEST_F() function in webrtc::TEST_F::FakeDecodedImageCallback
193 void Decoded(webrtc::VideoFrame& decodedImage, in TEST_F() function in webrtc::TEST_F::FakeDecodedImageCallback
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/Utils/
DAMDGPUBaseInfo.cpp664 Waitcnt Decoded; in decodeWaitcnt() local
665 Decoded.VmCnt = decodeVmcnt(Version, Encoded); in decodeWaitcnt()
666 Decoded.ExpCnt = decodeExpcnt(Version, Encoded); in decodeWaitcnt()
667 Decoded.LgkmCnt = decodeLgkmcnt(Version, Encoded); in decodeWaitcnt()
668 return Decoded; in decodeWaitcnt()
702 unsigned encodeWaitcnt(const IsaVersion &Version, const Waitcnt &Decoded) { in encodeWaitcnt() argument
703 return encodeWaitcnt(Version, Decoded.VmCnt, Decoded.ExpCnt, Decoded.LgkmCnt); in encodeWaitcnt()
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_DecodeBase64.pbtxt12 Decoded strings.
/external/webrtc/modules/video_coding/utility/
Dsimulcast_test_fixture_impl.cc139 int32_t Decoded(VideoFrame& decoded_image) override { in Decoded() function in webrtc::test::SimulcastTestFixtureImpl::TestDecodedImageCallback
154 int32_t Decoded(VideoFrame& decoded_image, int64_t decode_time_ms) override { in Decoded() function in webrtc::test::SimulcastTestFixtureImpl::TestDecodedImageCallback
158 void Decoded(VideoFrame& decoded_image, in Decoded() function in webrtc::test::SimulcastTestFixtureImpl::TestDecodedImageCallback
161 Decoded(decoded_image); in Decoded()
893 EXPECT_CALL(decoder_callback, Decoded(_, _, _)) in TestDecodeWidthHeightSet()
902 EXPECT_CALL(decoder_callback, Decoded(_, _, _)) in TestDecodeWidthHeightSet()
911 EXPECT_CALL(decoder_callback, Decoded(_, _, _)) in TestDecodeWidthHeightSet()
/external/llvm-project/llvm/lib/Target/AMDGPU/Utils/
DAMDGPUBaseInfo.cpp709 Waitcnt Decoded; in decodeWaitcnt() local
710 Decoded.VmCnt = decodeVmcnt(Version, Encoded); in decodeWaitcnt()
711 Decoded.ExpCnt = decodeExpcnt(Version, Encoded); in decodeWaitcnt()
712 Decoded.LgkmCnt = decodeLgkmcnt(Version, Encoded); in decodeWaitcnt()
713 return Decoded; in decodeWaitcnt()
747 unsigned encodeWaitcnt(const IsaVersion &Version, const Waitcnt &Decoded) { in encodeWaitcnt() argument
748 return encodeWaitcnt(Version, Decoded.VmCnt, Decoded.ExpCnt, Decoded.LgkmCnt); in encodeWaitcnt()

12