Home
last modified time | relevance | path

Searched refs:decoders (Results 1 – 25 of 126) sorted by relevance

123456

/external/pdfium/core/fpdfapi/parser/
Dfpdf_parser_decode_unittest.cpp17 auto decoders = pdfium::MakeRetain<CPDF_Array>(); in TEST() local
18 EXPECT_TRUE(ValidateDecoderPipeline(decoders.Get())); in TEST()
22 auto decoders = pdfium::MakeRetain<CPDF_Array>(); in TEST() local
23 decoders->AddNew<CPDF_Name>("FlateEncode"); in TEST()
24 EXPECT_TRUE(ValidateDecoderPipeline(decoders.Get())); in TEST()
28 auto decoders = pdfium::MakeRetain<CPDF_Array>(); in TEST() local
29 decoders->AddNew<CPDF_Name>("FooBar"); in TEST()
30 EXPECT_TRUE(ValidateDecoderPipeline(decoders.Get())); in TEST()
34 auto decoders = pdfium::MakeRetain<CPDF_Array>(); in TEST() local
35 decoders->AddNew<CPDF_Name>("AHx"); in TEST()
[all …]
/external/webrtc/test/
Dcall_config_utils_unittest.cc26 recv_config.decoders.push_back(decoder); in TEST()
44 EXPECT_EQ(recv_config.decoders[0].payload_type, in TEST()
45 unmarshaled_config.decoders[0].payload_type); in TEST()
46 EXPECT_EQ(recv_config.decoders[0].video_format.name, in TEST()
47 unmarshaled_config.decoders[0].video_format.name); in TEST()
48 EXPECT_EQ(recv_config.decoders[0].video_format.parameters, in TEST()
49 unmarshaled_config.decoders[0].video_format.parameters); in TEST()
Dcall_config_utils.cc36 receive_config.decoders.push_back(decoder); in ParseVideoReceiveStreamJsonConfig()
76 for (const auto& decoder : config.decoders) { in GenerateVideoReceiveStreamJsonConfig()
/external/subsampling-scale-image-view/library/src/main/java/com/davemorrissey/labs/subscaleview/decoder/
DSkiaPooledImageRegionDecoder.java342 private final Map<BitmapRegionDecoder, Boolean> decoders = new ConcurrentHashMap<>(); field in SkiaPooledImageRegionDecoder.DecoderPool
348 return decoders.isEmpty(); in isEmpty()
355 return decoders.size(); in size()
379 decoders.put(decoder, false); in add()
391 while (!decoders.isEmpty()) { in recycle()
394 decoders.remove(decoder); in recycle()
399 for (Map.Entry<BitmapRegionDecoder, Boolean> entry : decoders.entrySet()) { in getNextAvailable()
409 for (Map.Entry<BitmapRegionDecoder, Boolean> entry : decoders.entrySet()) { in markAsUnused()
/external/strace/
Dnlattr.c92 const nla_decoder_t *const decoders, in decode_nlattr_with_data() argument
108 if (!decoders in decode_nlattr_with_data()
110 || !decoders[idx] in decode_nlattr_with_data()
111 || !decoders[idx]( in decode_nlattr_with_data()
129 const nla_decoder_t *const decoders, in decode_nlattr() argument
137 if (decoders && !size && opaque_data) in decode_nlattr()
142 table, dflt, decoders, opaque_data); in decode_nlattr()
167 decoders, size, opaque_data); in decode_nlattr()
/external/OpenCSD/decoder/docs/
Dexternal_custom.md10 than an ARM core which cannot be decoded by the standard built-in decoders within the library.
15 same way as the built-in decoders. This means that the external decoder can be created and destroyed
16 using the decode tree API, and will integrate seamlessly with any ARM processor decoders that are p…
21 …d_extern_dcd_fact_t` : This is a decoder "factory" that allows the creation of the custom decoders.
23 …k functions allowing the decoder to use library functionality in the same way as built-in decoders.
38 Once registered, the standard API functions used with the built-in decoders will work with the cust…
89 architecture decoders, but should where possible use these functions if being used as part of a com…
90 use of the external decoders.
105 …is provided to both test the C-API interfaces provided for using custom decoders and as a worked e…
127 After this the test uses the same code path as the built in decoders when testing the custom decode…
[all …]
/external/webrtc/examples/androidvoip/java/org/webrtc/examples/androidvoip/
DMainActivity.java115 List<String> decoders = new ArrayList<>(); in getSelectedDecoders() local
118 decoders.add(supportedCodecs.get(i)); in getSelectedDecoders()
121 return decoders; in getSelectedDecoders()
142 List<String> decoders = getSelectedDecoders(); in setUpDecoderSelectionButton()
143 String result = decoders.stream().collect(Collectors.joining(", ")); in setUpDecoderSelectionButton()
149 voipClient.setDecoders(decoders); in setUpDecoderSelectionButton()
DVoipClient.java74 public void setDecoders(List<String> decoders) { in setDecoders() argument
77 nativeSetDecoders(nativeClient, decoders); in setDecoders()
176 private static native void nativeSetDecoders(long nativeAndroidVoipClient, List<String> decoders); in nativeSetDecoders() argument
/external/flac/src/test_libFLAC++/
DMakefile.am44 decoders.cpp \
50 decoders.h \
DCMakeLists.txt2 decoders.cpp
/external/llvm-project/llvm/test/CodeGen/ARM/
D2008-05-19-ScavengerAssert.ll4 @decoders = external global %struct.Decoders ; <%struct.Decoders*> [#uses=1]
12 …et_mem2Dint( i32*** getelementptr (%struct.Decoders, %struct.Decoders* @decoders, i32 0, i32 0), i…
/external/llvm/test/CodeGen/ARM/
D2008-05-19-ScavengerAssert.ll4 @decoders = external global %struct.Decoders ; <%struct.Decoders*> [#uses=1]
12 …et_mem2Dint( i32*** getelementptr (%struct.Decoders, %struct.Decoders* @decoders, i32 0, i32 0), i…
/external/webrtc/call/
Dvideo_receive_stream.cc88 for (size_t i = 0; i < decoders.size(); ++i) { in ToString()
89 ss << decoders[i].ToString(); in ToString()
90 if (i != decoders.size() - 1) in ToString()
/external/flac/src/test_libFLAC/
DMakefile.am47 decoders.c \
59 decoders.h \
/external/webrtc/video/end_to_end_tests/
Dframe_encryption_tests.cc51 recv_config.decoders.clear(); in ModifyVideoConfigs()
52 recv_config.decoders.push_back(decoder); in ModifyVideoConfigs()
Dfec_tests.cc124 (*receive_configs)[0].decoders.clear(); in TEST_F()
125 (*receive_configs)[0].decoders.push_back(decoder); in TEST_F()
485 (*receive_configs)[0].decoders.resize(1); in TEST_F()
486 (*receive_configs)[0].decoders[0].payload_type = in TEST_F()
488 (*receive_configs)[0].decoders[0].video_format = in TEST_F()
490 (*receive_configs)[0].decoders[0].decoder_factory = &decoder_factory_; in TEST_F()
Dcodec_tests.cc82 (*receive_configs)[0].decoders.resize(1); in ModifyVideoConfigs()
83 (*receive_configs)[0].decoders[0].payload_type = in ModifyVideoConfigs()
85 (*receive_configs)[0].decoders[0].video_format = in ModifyVideoConfigs()
87 (*receive_configs)[0].decoders[0].decoder_factory = decoder_factory_; in ModifyVideoConfigs()
Dextended_reports_tests.cc182 (*receive_configs)[0].decoders.resize(1); in ModifyVideoConfigs()
183 (*receive_configs)[0].decoders[0].payload_type = in ModifyVideoConfigs()
185 (*receive_configs)[0].decoders[0].video_format = in ModifyVideoConfigs()
/external/exoplayer/tree/extensions/ffmpeg/
DREADME.md44 * Configure the decoders to include. See the [Supported formats][] page for
45 details of the available decoders, and which formats they support.
112 [enabling extension decoders][].
115 [enabling extension decoders]: https://exoplayer.dev/demo-application.html#enabling-extension-decod…
/external/webrtc/modules/audio_coding/neteq/
Dneteq_decoder_plc_unittest.cc174 NetEqTest::DecoderMap decoders; in RunTest() local
180 decoders.emplace(kPayloadType, SdpAudioFormat("l16", 32000, 1)); in RunTest()
191 /*codecs=*/decoders, /*text_log=*/nullptr, /*neteq_factory=*/nullptr, in RunTest()
/external/fec/
DREADME15 1. Viterbi decoders for the following convolutional codes:
21 2. Reed-Solomon encoders and decoders for any user-specified code.
57 versions, with a few minor exceptions. The Viterbi decoders in C have
111 Switch from 4 to 8-bit input symbols on all Viterbi decoders
117 Added error checking, fixed alignment bug in SSE2 versions of Viterbi decoders causing segfaults
DMETADATA2 description: "This library package provides several forward error correction (FEC) decoders and acc…
/external/owasp/sanitizer/lib/commons-codec-1.4/
DRELEASE-NOTES.txt9 The codec package contains simple encoder and decoders for various formats
11 decoders, the codec package also maintains a collection of phonetic encoding
/external/exoplayer/tree/extensions/flac/
DREADME.md103 [enabling extension decoders][].
106 [enabling extension decoders]: https://exoplayer.dev/demo-application.html#enabling-extension-decod…
/external/exoplayer/tree/extensions/opus/
DREADME.md107 [enabling extension decoders][].
110 [enabling extension decoders]: https://exoplayer.dev/demo-application.html#enabling-extension-decod…

123456