Home
last modified time | relevance | path

Searched refs:formatSupport (Results 1 – 25 of 30) sorted by relevance

12

/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/core/src/main/java/com/google/android/exoplayer2/
DRendererCapabilities.java182 static int create(@C.FormatSupport int formatSupport) { in create() argument
183 return create(formatSupport, ADAPTIVE_NOT_SUPPORTED, TUNNELING_NOT_SUPPORTED); in create()
200 @C.FormatSupport int formatSupport, in create()
204 formatSupport, in create()
227 @C.FormatSupport int formatSupport, in create()
232 return formatSupport in create()
DBaseRenderer.java386 @C.FormatSupport int formatSupport = C.FORMAT_HANDLED; in createRendererException() local
391 formatSupport = RendererCapabilities.getFormatSupport(supportsFormat(format)); in createRendererException()
399 cause, getName(), getIndex(), format, formatSupport, isRecoverable, errorCode); in createRendererException()
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/core/src/main/java/com/google/android/exoplayer2/
DRendererCapabilities.java202 static @Capabilities int create(@C.FormatSupport int formatSupport) { in create() argument
203 return create(formatSupport, ADAPTIVE_NOT_SUPPORTED, TUNNELING_NOT_SUPPORTED); in create()
219 @C.FormatSupport int formatSupport, in create()
223 formatSupport, in create()
245 @C.FormatSupport int formatSupport, in create()
250 return formatSupport in create()
DBaseRenderer.java388 @C.FormatSupport int formatSupport = C.FORMAT_HANDLED; in createRendererException() local
393 formatSupport = RendererCapabilities.getFormatSupport(supportsFormat(format)); in createRendererException()
401 cause, getName(), getIndex(), format, formatSupport, isRecoverable, errorCode); in createRendererException()
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/core/src/main/java/com/google/android/exoplayer2/trackselection/
DDefaultTrackSelector.java1741 @Capabilities int[][] formatSupport, in selectVideoTrack() argument
1751 selectAdaptiveVideoTrack(groups, formatSupport, mixedMimeTypeAdaptationSupports, params); in selectVideoTrack()
1754 definition = selectFixedVideoTrack(groups, formatSupport, params); in selectVideoTrack()
1762 @Capabilities int[][] formatSupport, in selectAdaptiveVideoTrack() argument
1777 formatSupport[i], in selectAdaptiveVideoTrack()
1800 @Capabilities int[] formatSupport, in getAdaptiveVideoTracksForGroup() argument
1837 formatSupport, in getAdaptiveVideoTracksForGroup()
1860 formatSupport, in getAdaptiveVideoTracksForGroup()
1878 @Capabilities int[] formatSupport, in getAdaptiveVideoTrackCountForMimeType() argument
1896 formatSupport[trackIndex], in getAdaptiveVideoTrackCountForMimeType()
[all …]
DMappingTrackSelector.java534 @Capabilities int[] formatSupport = new int[group.length]; in getFormatSupport() local
536 formatSupport[i] = rendererCapabilities.supportsFormat(group.getFormat(i)); in getFormatSupport()
538 return formatSupport; in getFormatSupport()
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/core/src/main/java/com/google/android/exoplayer2/trackselection/
DDefaultTrackSelector.java1818 int trackType, TrackGroupArray groups, @Capabilities int[][] formatSupport, Parameters params) in selectOtherTrack() argument
1825 @Capabilities int[] trackFormatSupport = formatSupport[groupIndex]; in selectOtherTrack()
1848 @Capabilities int[][][] formatSupport, in selectTracksForType() argument
1858 @Capabilities int[] groupSupport = formatSupport[rendererIndex][groupIndex]; in selectTracksForType()
2059 @Capabilities int[][] formatSupport, in rendererSupportsTunneling()
2068 int trackFormatSupport = formatSupport[trackGroupIndex][selection.getIndexInTrackGroup(i)]; in rendererSupportsTunneling()
2090 @Capabilities int formatSupport, boolean allowExceedsCapabilities) { in isSupported()
2091 @FormatSupport int maskedSupport = RendererCapabilities.getFormatSupport(formatSupport); in isSupported()
2262 @Capabilities int[] formatSupport, in createForTrackGroup() argument
2282 formatSupport[i], in createForTrackGroup()
[all …]
DMappingTrackSelector.java534 @Capabilities int[] formatSupport = new int[group.length]; in getFormatSupport() local
536 formatSupport[i] = rendererCapabilities.supportsFormat(group.getFormat(i)); in getFormatSupport()
538 return formatSupport; in getFormatSupport()
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/extensions/opus/src/main/java/com/google/android/exoplayer2/ext/opus/
DLibopusAudioRenderer.java102 int formatSupport = in createDecoder() local
105 boolean outputFloat = formatSupport == AudioSink.SINK_FORMAT_SUPPORTED_DIRECTLY; in createDecoder()
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/extensions/opus/src/main/java/com/google/android/exoplayer2/ext/opus/
DLibopusAudioRenderer.java101 int formatSupport = in createDecoder() local
104 boolean outputFloat = formatSupport == AudioSink.SINK_FORMAT_SUPPORTED_DIRECTLY; in createDecoder()
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/extensions/ffmpeg/src/main/java/com/google/android/exoplayer2/ext/ffmpeg/
DFfmpegAudioRenderer.java153 int formatSupport = in shouldOutputFloat() local
157 switch (formatSupport) { in shouldOutputFloat()
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/extensions/ffmpeg/src/main/java/com/google/android/exoplayer2/ext/ffmpeg/
DFfmpegAudioRenderer.java151 int formatSupport = in shouldOutputFloat() local
155 switch (formatSupport) { in shouldOutputFloat()
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/core/src/main/java/com/google/android/exoplayer2/audio/
DDecoderAudioRenderer.java230 @C.FormatSupport int formatSupport = supportsFormatInternal(format); in supportsFormat() local
231 if (formatSupport <= C.FORMAT_UNSUPPORTED_DRM) { in supportsFormat()
232 return RendererCapabilities.create(formatSupport); in supportsFormat()
236 return RendererCapabilities.create(formatSupport, ADAPTIVE_NOT_SEAMLESS, tunnelingSupport); in supportsFormat()
DMediaCodecAudioRenderer.java331 int formatSupport = isFormatSupported ? C.FORMAT_HANDLED : C.FORMAT_EXCEEDS_CAPABILITIES; in supportsFormat() local
345 formatSupport, in supportsFormat()
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/core/src/main/java/com/google/android/exoplayer2/audio/
DDecoderAudioRenderer.java231 @C.FormatSupport int formatSupport = supportsFormatInternal(format); in supportsFormat() local
232 if (formatSupport <= C.FORMAT_UNSUPPORTED_DRM) { in supportsFormat()
233 return RendererCapabilities.create(formatSupport); in supportsFormat()
237 return RendererCapabilities.create(formatSupport, ADAPTIVE_NOT_SEAMLESS, tunnelingSupport); in supportsFormat()
DMediaCodecAudioRenderer.java330 int formatSupport = isFormatSupported ? C.FORMAT_HANDLED : C.FORMAT_EXCEEDS_CAPABILITIES; in supportsFormat() local
344 formatSupport, in supportsFormat()
/external/skia/src/gpu/ganesh/d3d/
DGrD3DCaps.cpp704 void GrD3DCaps::FormatInfo::InitFormatFlags(const D3D12_FEATURE_DATA_FORMAT_SUPPORT& formatSupport, in InitFormatFlags() argument
706 if (SkToBool(D3D12_FORMAT_SUPPORT1_SHADER_SAMPLE & formatSupport.Support1)) { in InitFormatFlags()
710 if (SkToBool(D3D12_FORMAT_SUPPORT1_RENDER_TARGET & formatSupport.Support1) && in InitFormatFlags()
711 SkToBool(D3D12_FORMAT_SUPPORT1_BLENDABLE & formatSupport.Support1)) { in InitFormatFlags()
716 if (SkToBool(D3D12_FORMAT_SUPPORT1_MULTISAMPLE_RENDERTARGET & formatSupport.Support1)) { in InitFormatFlags()
720 if (SkToBool(D3D12_FORMAT_SUPPORT1_MULTISAMPLE_RESOLVE & formatSupport.Support1)) { in InitFormatFlags()
724 if (SkToBool(D3D12_FORMAT_SUPPORT1_TYPED_UNORDERED_ACCESS_VIEW & formatSupport.Support1)) { in InitFormatFlags()
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/core/src/main/java/com/google/android/exoplayer2/util/
DEventLogger.java289 String formatSupport = getFormatSupportString(getFormatSupport(capabilities)); in onTracksChanged() local
304 + formatSupport in onTracksChanged()
334 String formatSupport = getFormatSupportString(C.FORMAT_UNSUPPORTED_TYPE); in onTracksChanged() local
343 + formatSupport); in onTracksChanged()
/external/angle/src/tests/gl_tests/
DD3DTextureTest.cpp1655 UINT formatSupport; in RunYUVSamplerTest() local
1657 FAILED(mD3D11Device->CheckFormatSupport(format, &formatSupport))); in RunYUVSamplerTest()
1658 ASSERT_TRUE(formatSupport & in RunYUVSamplerTest()
1833 UINT formatSupport; in RunYUVRenderTest() local
1835 FAILED(mD3D11Device->CheckFormatSupport(format, &formatSupport))); in RunYUVRenderTest()
1836 ASSERT_TRUE(formatSupport & in RunYUVRenderTest()
1984 UINT formatSupport; in RunYUVReadPixelTest() local
1986 FAILED(mD3D11Device->CheckFormatSupport(format, &formatSupport))); in RunYUVReadPixelTest()
1987 ASSERT_TRUE(formatSupport & in RunYUVReadPixelTest()
/external/angle/src/tests/egl_tests/
DEGLStreamTest.cpp29 UINT formatSupport; in CheckTextureSupport() local
30 result = device->CheckFormatSupport(DXGI_FORMAT_NV12, &formatSupport); in CheckTextureSupport()
35 return (formatSupport & D3D11_FORMAT_SUPPORT_TEXTURE2D) != 0; in CheckTextureSupport()
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/playbacktests/src/androidTest/java/com/google/android/exoplayer2/playbacktests/gts/
DDashTestRunner.java496 private static boolean isFormatHandled(int formatSupport) { in isFormatHandled() argument
497 return RendererCapabilities.getFormatSupport(formatSupport) == C.FORMAT_HANDLED; in isFormatHandled()
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/playbacktests/src/androidTest/java/com/google/android/exoplayer2/playbacktests/gts/
DDashTestRunner.java496 private static boolean isFormatHandled(int formatSupport) { in isFormatHandled() argument
497 return RendererCapabilities.getFormatSupport(formatSupport) == C.FORMAT_HANDLED; in isFormatHandled()
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/common/src/main/java/com/google/android/exoplayer2/
DC.java1209 public static String getFormatSupportString(@FormatSupport int formatSupport) { in getFormatSupportString() argument
1210 return Util.getFormatSupportString(formatSupport); in getFormatSupportString()
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/common/src/main/java/com/google/android/exoplayer2/
DC.java1334 public static String getFormatSupportString(@FormatSupport int formatSupport) { in getFormatSupportString() argument
1335 return Util.getFormatSupportString(formatSupport); in getFormatSupportString()
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/core/src/main/java/com/google/android/exoplayer2/util/
DEventLogger.java270 String formatSupport = getFormatSupportString(trackGroupInfo.getTrackSupport(trackIndex)); in onTracksInfoChanged() local
279 + formatSupport); in onTracksInfoChanged()

12