Home
last modified time | relevance | path

Searched refs:decoderFactory (Results 1 – 9 of 9) sorted by relevance

/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/metadata/
DMetadataRenderer.java50 private final MetadataDecoderFactory decoderFactory; field in MetadataRenderer
85 MetadataOutput output, @Nullable Looper outputLooper, MetadataDecoderFactory decoderFactory) { in MetadataRenderer() argument
90 this.decoderFactory = Assertions.checkNotNull(decoderFactory); in MetadataRenderer()
104 if (decoderFactory.supportsFormat(format)) { in supportsFormat()
114 decoder = decoderFactory.createDecoder(formats[0]); in onStreamChanged()
175 if (wrappedMetadataFormat != null && decoderFactory.supportsFormat(wrappedMetadataFormat)) { in decodeWrappedMetadata()
177 decoderFactory.createDecoder(wrappedMetadataFormat); in decodeWrappedMetadata()
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/text/
DTextRenderer.java80 private final SubtitleDecoderFactory decoderFactory; field in TextRenderer
115 TextOutput output, @Nullable Looper outputLooper, SubtitleDecoderFactory decoderFactory) { in TextRenderer() argument
120 this.decoderFactory = decoderFactory; in TextRenderer()
132 if (decoderFactory.supportsFormat(format)) { in supportsFormat()
148 decoder = decoderFactory.createDecoder(streamFormat); in onStreamChanged()
299 decoder = decoderFactory.createDecoder(streamFormat); in replaceDecoder()
/external/webrtc/sdk/objc/api/peerconnection/
DRTCPeerConnectionFactory.h42 decoderFactory:(nullable id<RTC_OBJC_TYPE(RTCVideoDecoderFactory)>)decoderFactory;
DRTCPeerConnectionFactory+Native.h72 decoderFactory:(nullable id<RTC_OBJC_TYPE(RTCVideoDecoderFactory)>)decoderFactory;
DRTCPeerConnectionFactory.mm92 decoderFactory:(nullable id<RTC_OBJC_TYPE(RTCVideoDecoderFactory)>)decoderFactory {
101 if (decoderFactory) {
102 native_decoder_factory = webrtc::ObjCToNativeVideoDecoderFactory(decoderFactory);
/external/subsampling-scale-image-view/library/src/main/java/com/davemorrissey/labs/subscaleview/
DSubsamplingScaleImageView.java1536 …w view, Context context, DecoderFactory<? extends ImageRegionDecoder> decoderFactory, Uri source) { in TilesInitTask() argument
1539 …ecoderFactoryRef = new WeakReference<DecoderFactory<? extends ImageRegionDecoder>>(decoderFactory); in TilesInitTask()
1548 … DecoderFactory<? extends ImageRegionDecoder> decoderFactory = decoderFactoryRef.get(); in doInBackground() local
1550 if (context != null && decoderFactory != null && view != null) { in doInBackground()
1552 decoder = decoderFactory.make(); in doInBackground()
1720 …geView view, Context context, DecoderFactory<? extends ImageDecoder> decoderFactory, Uri source, b… in BitmapLoadTask() argument
1723 …this.decoderFactoryRef = new WeakReference<DecoderFactory<? extends ImageDecoder>>(decoderFactory); in BitmapLoadTask()
1733 DecoderFactory<? extends ImageDecoder> decoderFactory = decoderFactoryRef.get(); in doInBackground() local
1735 if (context != null && decoderFactory != null && view != null) { in doInBackground()
1737 bitmap = decoderFactory.make().decode(context, source); in doInBackground()
/external/webrtc/examples/androidapp/src/org/appspot/apprtc/
DPeerConnectionClient.java433 final VideoDecoderFactory decoderFactory; in createPeerConnectionFactoryInternal() local
438 decoderFactory = new DefaultVideoDecoderFactory(rootEglBase.getEglBaseContext()); in createPeerConnectionFactoryInternal()
441 decoderFactory = new SoftwareVideoDecoderFactory(); in createPeerConnectionFactoryInternal()
448 .setVideoDecoderFactory(decoderFactory) in createPeerConnectionFactoryInternal()
/external/webrtc/examples/objc/AppRTCMobile/
DARDAppClient.m227 RTC_OBJC_TYPE(RTCDefaultVideoDecoderFactory) *decoderFactory =
234 decoderFactory:decoderFactory];
/external/webrtc/sdk/android/api/org/webrtc/
DPeerConnectionFactory.java597 VideoDecoderFactory decoderFactory, long nativeAudioProcessor, in nativeCreatePeerConnectionFactory() argument