Package org.robolectric.shadows
Class ShadowMediaCodec.CodecConfig
java.lang.Object
org.robolectric.shadows.ShadowMediaCodec.CodecConfig
- Enclosing class:
- ShadowMediaCodec
Configuration that can be supplied to
ShadowMediaCodec
to simulate actual
encoding/decoding.-
Nested Class Summary
Modifier and TypeClassDescriptionstatic interface
A codec is implemented as part of the configuration to allow theShadowMediaCodec
to simulate actual encoding/decoding. -
Constructor Summary
ConstructorDescriptionCodecConfig
(int inputBufferSize, int outputBufferSize, ShadowMediaCodec.CodecConfig.Codec codec) -
Method Summary
-
Constructor Details
-
CodecConfig
public CodecConfig(int inputBufferSize, int outputBufferSize, ShadowMediaCodec.CodecConfig.Codec codec) - Parameters:
inputBufferSize
- the size of the buffers offered as input to the codec.outputBufferSize
- the size of the buffers offered as output from the codec.codec
- should be able to map from input size -> output size
-