Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
SDK
/
exoplayer
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
af647ed4
authored
Feb 11, 2022
by
kimvde
Committed by
Ian Baker
Feb 17, 2022
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Remove Transformer deprecated methods that were never released
#minor-release PiperOrigin-RevId: 427965501
parent
1ddfe194
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
35 deletions
library/transformer/src/main/java/com/google/android/exoplayer2/transformer/Transformer.java
library/transformer/src/main/java/com/google/android/exoplayer2/transformer/Transformer.java
View file @
af647ed4
...
...
@@ -26,7 +26,6 @@ import static java.lang.Math.min;
import
static
java
.
lang
.
annotation
.
ElementType
.
TYPE_USE
;
import
android.content.Context
;
import
android.graphics.Matrix
;
import
android.os.Handler
;
import
android.os.Looper
;
import
android.os.ParcelFileDescriptor
;
...
...
@@ -223,24 +222,6 @@ public final class Transformer {
return
this
;
}
/** @deprecated Use {@link TransformationRequest.Builder#setResolution(int)} instead. */
@Deprecated
public
Builder
setResolution
(
int
outputHeight
)
{
transformationRequest
=
transformationRequest
.
buildUpon
().
setResolution
(
outputHeight
).
build
();
return
this
;
}
/**
* @deprecated Use {@link TransformationRequest.Builder#setTransformationMatrix(Matrix)}
* instead.
*/
@Deprecated
public
Builder
setTransformationMatrix
(
Matrix
transformationMatrix
)
{
transformationRequest
=
transformationRequest
.
buildUpon
().
setTransformationMatrix
(
transformationMatrix
).
build
();
return
this
;
}
/**
* @deprecated This feature will be removed in a following release and the MIME type of the
* output will always be MP4.
...
...
@@ -251,22 +232,6 @@ public final class Transformer {
return
this
;
}
/** @deprecated Use {@link TransformationRequest.Builder#setVideoMimeType(String)} instead. */
@Deprecated
public
Builder
setVideoMimeType
(
String
videoMimeType
)
{
transformationRequest
=
transformationRequest
.
buildUpon
().
setVideoMimeType
(
videoMimeType
).
build
();
return
this
;
}
/** @deprecated Use {@link TransformationRequest.Builder#setAudioMimeType(String)} instead. */
@Deprecated
public
Builder
setAudioMimeType
(
String
audioMimeType
)
{
transformationRequest
=
transformationRequest
.
buildUpon
().
setAudioMimeType
(
audioMimeType
).
build
();
return
this
;
}
/**
* @deprecated Use {@link #addListener(Listener)}, {@link #removeListener(Listener)} or {@link
* #removeAllListeners()} instead.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment