HomeSort by relevance Sort by last modified time
    Searched refs:decoders (Results 1 - 25 of 58) sorted by null

1 2 3

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusimagecodec.h 4 * GDI+ image decoders and encoders
30 ImageCodecInfo *decoders)
33 return DllExports::GdipGetImageDecoders(numDecoders, size, decoders);
35 return GdipGetImageDecoders(numDecoders, size, decoders);
  /external/webrtc/webrtc/call/
packet_injection_tests.cc 45 video_receive_configs_[0].decoders[0].payload_type = payload_type;
48 video_receive_configs_[0].decoders[0].payload_name = "VP8";
51 video_receive_configs_[0].decoders[0].payload_name = "H264";
rtc_event_log_unittest.cc 170 // Check decoders.
171 ASSERT_EQ(static_cast<int>(config.decoders.size()),
174 ASSERT_TRUE(receiver_config.decoders(i).has_name());
175 ASSERT_TRUE(receiver_config.decoders(i).has_payload_type());
176 const std::string& decoder_name = receiver_config.decoders(i).name();
177 int decoder_type = receiver_config.decoders(i).payload_type();
178 EXPECT_EQ(config.decoders[i].payload_name, decoder_name);
179 EXPECT_EQ(config.decoders[i].payload_type, decoder_type);
373 config->decoders.push_back(decoder);
bitrate_estimator_tests.cc 132 // receive_config_.decoders will be set by every stream separately.
203 test_->receive_config_.decoders.clear();
204 test_->receive_config_.decoders.push_back(decoder);
  /external/strace/
nlattr.c 74 const nla_decoder_t *const decoders,
87 if (!decoders
89 || !decoders[nla->nla_type]
90 || !decoders[nla->nla_type](tcp, addr + NLA_HDRLEN,
105 const nla_decoder_t *const decoders,
136 decoders, size, opaque_data);
  /cts/hostsidetests/media/bitstreams/app/src/android/media/cts/bitstreams/app/
MediaBitstreamsDeviceSideTest.java 166 String[] decoders = MediaUtils.getDecoderNamesForMime(mime); local
169 ps.println(decoders.length);
170 for (String name : decoders) {
221 List<String> decoders = new ArrayList<>(); local
229 decoders.add(name);
235 return decoders;
252 List<String> decoders = new ArrayList<>(); local
262 decoders = getDecodersForPath(fullPath);
271 ps.println(decoders.size());
272 for (String name : decoders) {
    [all...]
  /frameworks/base/media/jni/
android_media_MediaProfiles.cpp 251 Vector<video_decoder> decoders = sProfiles->getVideoDecoders(); local
252 int nSize = decoders.size();
258 return static_cast<jint>(decoders[index]);
273 Vector<audio_decoder> decoders = sProfiles->getAudioDecoders(); local
274 int nSize = decoders.size();
280 return static_cast<jint>(decoders[index]);
  /external/subsampling-scale-image-view/library/src/main/java/com/davemorrissey/labs/subscaleview/decoder/
SkiaPooledImageRegionDecoder.java 46 * Additional decoders are initialised when a subregion of the image is first requested, which indicates
109 * additional three decoders. The thread will abort if {@link #recycle()} is called.
120 * Initialises extra decoders for as long as {@link #allowAdditionalDecoder(int, long)} returns
125 debug("Starting lazy init of additional decoders");
130 // New decoders can be created while reading tiles but this read lock prevents
243 * currently has decoders, because it's guaranteed to have one decoder after {@link #init(Context, Uri)}
313 * @param numberOfDecoders the number of decoders that have been created so far
320 debug("No additional decoders allowed, reached hard limit (4)");
342 private final Map<BitmapRegionDecoder, Boolean> decoders = new ConcurrentHashMap<>(); field in class:SkiaPooledImageRegionDecoder.DecoderPool
348 return decoders.isEmpty()
    [all...]
  /external/webrtc/webrtc/
video_receive_stream.h 83 // Decoders for every payload that we can receive.
84 std::vector<Decoder> decoders; member in struct:webrtc::VideoReceiveStream::Config
  /external/webrtc/webrtc/video/
video_receive_stream.cc 49 ss << "{decoders: [";
50 for (size_t i = 0; i < decoders.size(); ++i) {
51 ss << decoders[i].ToString();
52 if (i != decoders.size() - 1)
260 RTC_DCHECK(!config_.decoders.empty());
262 for (size_t i = 0; i < config_.decoders.size(); ++i) {
263 const Decoder& decoder = config_.decoders[i];
268 << ") for different decoders.";
  /frameworks/base/media/java/android/media/
MediaFile.java 166 List<AudioDecoder> decoders = DecoderCapabilities.getAudioDecoders(); local
167 int count = decoders.size();
169 AudioDecoder decoder = decoders.get(i);
178 List<VideoDecoder> decoders = DecoderCapabilities.getVideoDecoders(); local
179 int count = decoders.size();
181 VideoDecoder decoder = decoders.get(i);
  /compatibility/cdd/2_device-types/
2_3_television-reqs.md 122 Television device implementations with H.265 hardware decoders MUST support H.265 decoding,
127 If Television device implementations with H.265 hardware decoders support
138 Television device implementations with VP9 hardware decoders MUST support VP9 decoding, as detailed in Section 5.3.7,
143 If Television device implementations with VP9 hardware decoders support VP9 decoding and the UHD decoding
  /cts/tests/tests/media/src/android/media/cts/
ImageReaderDecoderTest.java 66 * test. For decoder test, hw and sw decoders are tested,
77 // video decoders only support a single outstanding image with the consumer
317 private Decoder[] decoders(MediaAssets assets, boolean goog) { method in class:ImageReaderDecoderTest
339 return decoders(assets, true /* goog */);
343 return decoders(assets, false /* goog */);
392 Decoder[] decoders = other(new MediaAssets( local
398 decodeTest(decoders, MODE_IMAGEREADER, false /* checkSwirl */);
405 Decoder[] decoders = goog(new MediaAssets( local
411 decodeTest(decoders, MODE_IMAGEREADER, false /* checkSwirl */);
414 private void swirlTest(Decoder[] decoders, int mode)
    [all...]
  /external/zxing/core/
core.jar 
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/
__init__.py 272 can be used to implement custom decoders (e.g. JSON-RPC class hinting).
277 This feature can be used to implement custom decoders that rely on the
306 can be used to implement custom decoders (e.g. JSON-RPC class hinting).
311 This feature can be used to implement custom decoders that rely on the
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/
__init__.py 260 can be used to implement custom decoders (e.g. JSON-RPC class hinting).
265 This feature can be used to implement custom decoders that rely on the
294 can be used to implement custom decoders (e.g. JSON-RPC class hinting).
299 This feature can be used to implement custom decoders that rely on the
  /external/python/cpython2/Lib/json/
__init__.py 273 can be used to implement custom decoders (e.g. JSON-RPC class hinting).
278 This feature can be used to implement custom decoders that rely on the
307 can be used to implement custom decoders (e.g. JSON-RPC class hinting).
312 This feature can be used to implement custom decoders that rely on the
  /external/python/cpython3/Lib/json/
__init__.py 282 can be used to implement custom decoders (e.g. JSON-RPC class hinting).
287 This feature can be used to implement custom decoders that rely on the
310 can be used to implement custom decoders (e.g. JSON-RPC class hinting).
315 This feature can be used to implement custom decoders that rely on the
  /external/webrtc/talk/media/webrtc/
fakewebrtcvideoengine.h 130 const std::vector<FakeWebRtcVideoDecoder*>& decoders() { function in class:cricket::FakeWebRtcVideoDecoderFactory
  /prebuilts/gdb/darwin-x86/lib/python2.7/json/
__init__.py 272 can be used to implement custom decoders (e.g. JSON-RPC class hinting).
277 This feature can be used to implement custom decoders that rely on the
306 can be used to implement custom decoders (e.g. JSON-RPC class hinting).
311 This feature can be used to implement custom decoders that rely on the
  /prebuilts/gdb/linux-x86/lib/python2.7/json/
__init__.py 272 can be used to implement custom decoders (e.g. JSON-RPC class hinting).
277 This feature can be used to implement custom decoders that rely on the
306 can be used to implement custom decoders (e.g. JSON-RPC class hinting).
311 This feature can be used to implement custom decoders that rely on the
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
__init__.py 272 can be used to implement custom decoders (e.g. JSON-RPC class hinting).
277 This feature can be used to implement custom decoders that rely on the
306 can be used to implement custom decoders (e.g. JSON-RPC class hinting).
311 This feature can be used to implement custom decoders that rely on the
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
__init__.py 272 can be used to implement custom decoders (e.g. JSON-RPC class hinting).
277 This feature can be used to implement custom decoders that rely on the
306 can be used to implement custom decoders (e.g. JSON-RPC class hinting).
311 This feature can be used to implement custom decoders that rely on the
  /frameworks/av/media/libmedia/
MediaProfiles.cpp 986 Vector<video_decoder> decoders; local
995 Vector<audio_decoder> decoders; local
    [all...]
  /prebuilts/go/darwin-x86/src/mime/quotedprintable/
reader.go 76 // with other broken QP encoders & decoders.

Completed in 4850 milliseconds

1 2 3