Class TransformationResult
- java.lang.Object
-
- com.google.android.exoplayer2.transformer.TransformationResult
-
@Deprecated public final class TransformationResult extends Object
Deprecated.UseExportResult
instead.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
TransformationResult.Builder
Deprecated.UseExportResult.Builder
instead.static class
TransformationResult.ProcessedInput
Deprecated.UseExportResult.ProcessedInput
instead.
-
Field Summary
Fields Modifier and Type Field Description String
audioEncoderName
Deprecated.The name of the audio encoder used, ornull
if none were used.int
averageAudioBitrate
Deprecated.The average bitrate of the audio track data, orC.RATE_UNSET_INT
if unset or unknown.int
averageVideoBitrate
Deprecated.The average bitrate of the video track data, orC.RATE_UNSET_INT
if unset or unknown.int
channelCount
Deprecated.The channel count of the audio, orC.LENGTH_UNSET
if unset or unknown.ColorInfo
colorInfo
Deprecated.TheColorInfo
of the video, ornull
if unset or unknown.long
durationMs
Deprecated.The duration of the file in milliseconds, orC.TIME_UNSET
if unset or unknown.long
fileSizeBytes
Deprecated.The size of the file in bytes, orC.LENGTH_UNSET
if unset or unknown.int
height
Deprecated.The height of the video, orC.LENGTH_UNSET
if unset or unknown.ImmutableList<TransformationResult.ProcessedInput>
processedInputs
Deprecated.The list of processed inputs.int
sampleRate
Deprecated.The sample rate of the audio, orC.RATE_UNSET_INT
if unset or unknown.TransformationException
transformationException
Deprecated.TheTransformationException
that caused the transformation to fail, ornull
if the transformation was a success.String
videoEncoderName
Deprecated.The name of the video encoder used, ornull
if none were used.int
videoFrameCount
Deprecated.The number of video frames.int
width
Deprecated.The width of the video, orC.LENGTH_UNSET
if unset or unknown.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description TransformationResult.Builder
buildUpon()
Deprecated.boolean
equals(Object o)
Deprecated.int
hashCode()
Deprecated.
-
-
-
Field Detail
-
processedInputs
public final ImmutableList<TransformationResult.ProcessedInput> processedInputs
Deprecated.The list of processed inputs.
-
durationMs
public final long durationMs
Deprecated.The duration of the file in milliseconds, orC.TIME_UNSET
if unset or unknown.
-
fileSizeBytes
public final long fileSizeBytes
Deprecated.The size of the file in bytes, orC.LENGTH_UNSET
if unset or unknown.
-
averageAudioBitrate
public final int averageAudioBitrate
Deprecated.The average bitrate of the audio track data, orC.RATE_UNSET_INT
if unset or unknown.
-
channelCount
public final int channelCount
Deprecated.The channel count of the audio, orC.LENGTH_UNSET
if unset or unknown.
-
sampleRate
public final int sampleRate
Deprecated.The sample rate of the audio, orC.RATE_UNSET_INT
if unset or unknown.
-
audioEncoderName
@Nullable public final String audioEncoderName
Deprecated.The name of the audio encoder used, ornull
if none were used.
-
averageVideoBitrate
public final int averageVideoBitrate
Deprecated.The average bitrate of the video track data, orC.RATE_UNSET_INT
if unset or unknown.
-
colorInfo
@Nullable public final ColorInfo colorInfo
Deprecated.TheColorInfo
of the video, ornull
if unset or unknown.
-
height
public final int height
Deprecated.The height of the video, orC.LENGTH_UNSET
if unset or unknown.
-
width
public final int width
Deprecated.The width of the video, orC.LENGTH_UNSET
if unset or unknown.
-
videoFrameCount
public final int videoFrameCount
Deprecated.The number of video frames.
-
videoEncoderName
@Nullable public final String videoEncoderName
Deprecated.The name of the video encoder used, ornull
if none were used.
-
transformationException
@Nullable public final TransformationException transformationException
Deprecated.TheTransformationException
that caused the transformation to fail, ornull
if the transformation was a success.
-
-