Home
last modified time | relevance | path

Searched refs:getOutputFormat (Results 1 – 25 of 31) sorted by relevance

12

/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/mediacodec/
DSynchronousMediaCodecAdapter.java50 public MediaFormat getOutputFormat() { in getOutputFormat() method in SynchronousMediaCodecAdapter
51 return codec.getOutputFormat(); in getOutputFormat()
DAsynchronousMediaCodecAdapter.java101 public MediaFormat getOutputFormat() { in getOutputFormat() method in AsynchronousMediaCodecAdapter
102 return mediaCodecAsyncCallback.getOutputFormat(); in getOutputFormat()
DMediaCodecAdapter.java67 MediaFormat getOutputFormat(); in getOutputFormat() method
DDedicatedThreadAsyncMediaCodecAdapter.java163 public synchronized MediaFormat getOutputFormat() { in getOutputFormat() method in DedicatedThreadAsyncMediaCodecAdapter
164 return mediaCodecAsyncCallback.getOutputFormat(); in getOutputFormat()
DMediaCodecAsyncCallback.java88 public MediaFormat getOutputFormat() throws IllegalStateException { in getOutputFormat() method in MediaCodecAsyncCallback
DMultiLockAsyncMediaCodecAdapter.java197 public MediaFormat getOutputFormat() { in getOutputFormat() method in MultiLockAsyncMediaCodecAdapter
/external/exoplayer/tree/library/core/src/test/java/com/google/android/exoplayer2/mediacodec/
DMultiLockAsyncMediaCodecAdapterTest.java228 assertThrows(IllegalStateException.class, () -> adapter.getOutputFormat()); in getOutputFormat_withoutFormatReceived_throwsException()
243 assertThat(adapter.getOutputFormat()).isEqualTo(formats[i]); in getOutputFormat_withMultipleFormats_returnsCorrectFormat()
245 assertThat(adapter.getOutputFormat()).isEqualTo(formats[i]); in getOutputFormat_withMultipleFormats_returnsCorrectFormat()
259 assertThat(adapter.getOutputFormat()).isEqualTo(format); in getOutputFormat_afterFlush_returnsPreviousFormat()
263 assertThat(adapter.getOutputFormat()).isEqualTo(format); in getOutputFormat_afterFlush_returnsPreviousFormat()
DDedicatedThreadAsyncMediaCodecAdapterTest.java228 assertThrows(IllegalStateException.class, () -> adapter.getOutputFormat()); in getOutputFormat_withoutFormatReceived_throwsException()
243 assertThat(adapter.getOutputFormat()).isEqualTo(formats[i]); in getOutputFormat_withMultipleFormats_returnsCorrectFormat()
245 assertThat(adapter.getOutputFormat()).isEqualTo(formats[i]); in getOutputFormat_withMultipleFormats_returnsCorrectFormat()
259 assertThat(adapter.getOutputFormat()).isEqualTo(format); in getOutputFormat_afterFlush_returnsPreviousFormat()
265 assertThat(adapter.getOutputFormat()).isEqualTo(format); in getOutputFormat_afterFlush_returnsPreviousFormat()
DAsynchronousMediaCodecAdapterTest.java206 assertThat(adapter.getOutputFormat()).isEqualTo(format); in getOutputFormat_withMultipleFormats_returnsFormatsInCorrectOrder()
208 assertThat(adapter.getOutputFormat()).isEqualTo(format); in getOutputFormat_withMultipleFormats_returnsFormatsInCorrectOrder()
214 assertThat(adapter.getOutputFormat()).isEqualTo(formats[formats.length - 1]); in getOutputFormat_withMultipleFormats_returnsFormatsInCorrectOrder()
227 assertThat(adapter.getOutputFormat()).isEqualTo(format); in getOutputFormat_afterFlush_returnsPreviousFormat()
DMediaCodecAsyncCallbackTest.java141 mediaCodecAsyncCallback.getOutputFormat(); in getOutputFormat_onNewInstance_raisesException()
155 assertThat(mediaCodecAsyncCallback.getOutputFormat()).isEqualTo(format); in getOutputFormat_afterOnOutputFormatCalled_returnsFormat()
166 assertThat(mediaCodecAsyncCallback.getOutputFormat()).isEqualTo(format); in getOutputFormat_afterFlush_raisesCurrentFormat()
/external/webrtc/sdk/android/src/java/org/webrtc/
DMediaCodecWrapperFactoryImpl.java82 public MediaFormat getOutputFormat() { in getOutputFormat() method in MediaCodecWrapperFactoryImpl.MediaCodecWrapperImpl
83 return mediaCodec.getOutputFormat(); in getOutputFormat()
DMediaCodecWrapper.java44 MediaFormat getOutputFormat(); in getOutputFormat() method
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DSerializer.java176 public Properties getOutputFormat(); in getOutputFormat() method
DToTextSAXHandler.java101 public Properties getOutputFormat() in getOutputFormat() method in ToTextSAXHandler
DToUnknownStream.java170 public Properties getOutputFormat() in getOutputFormat() method in ToUnknownStream
172 return m_handler.getOutputFormat(); in getOutputFormat()
/external/exoplayer/tree/extensions/opus/src/main/java/com/google/android/exoplayer2/ext/opus/
DLibopusAudioRenderer.java101 protected Format getOutputFormat() { in getOutputFormat() method in LibopusAudioRenderer
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowMediaRecorderTest.java119 … assertThat(shadowMediaRecorder.getOutputFormat()).isNotEqualTo(MediaRecorder.OutputFormat.MPEG_4); in testOutputFormat()
121 assertThat(shadowMediaRecorder.getOutputFormat()).isEqualTo(MediaRecorder.OutputFormat.MPEG_4); in testOutputFormat()
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
DSerializerSwitcher.java73 Properties prevProperties = transformer.getOutputFormat().getProperties(); in switchSerializerIfHTML()
DTransformerImpl.java725 OutputProperties props = getOutputFormat(); in getOutputProperty()
756 OutputProperties props = getOutputFormat(); in getOutputPropertyNoDefault()
916 return (Properties) getOutputFormat().getProperties().clone(); in getOutputProperties()
935 createSerializationHandler(outputTarget, getOutputFormat()); in createSerializationHandler()
1360 public OutputProperties getOutputFormat() in getOutputFormat() method in TransformerImpl
/external/exoplayer/tree/extensions/flac/src/main/java/com/google/android/exoplayer2/ext/flac/
DLibflacAudioRenderer.java124 protected Format getOutputFormat() { in getOutputFormat() method in LibflacAudioRenderer
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowMediaRecorder.java216 public int getOutputFormat() { in getOutputFormat() method in ShadowMediaRecorder
/external/exoplayer/tree/extensions/ffmpeg/src/main/java/com/google/android/exoplayer2/ext/ffmpeg/
DFfmpegAudioRenderer.java134 public Format getOutputFormat() { in getOutputFormat() method in FfmpegAudioRenderer
/external/exoplayer/tree/library/core/src/test/java/com/google/android/exoplayer2/audio/
DDecoderAudioRendererTest.java80 protected Format getOutputFormat() { in setUp()
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/audio/
DDecoderAudioRenderer.java319 protected abstract Format getOutputFormat(); in getOutputFormat() method in DecoderAudioRenderer
362 Format outputFormat = getOutputFormat(); in drainOutputBuffer()
/external/webrtc/sdk/android/tests/src/org/webrtc/
DFakeMediaCodecWrapper.java303 public MediaFormat getOutputFormat() { in getOutputFormat() method in FakeMediaCodecWrapper

12