mirror of
https://github.com/samsonjs/media.git
synced 2026-03-25 09:25:53 +00:00
Add TransformationRequest toString method
PiperOrigin-RevId: 536727079
(cherry picked from commit 108000834b)
This commit is contained in:
parent
89c5e16d2f
commit
55a2e7ff9e
1 changed files with 16 additions and 0 deletions
|
|
@ -310,6 +310,22 @@ public final class TransformationRequest {
|
|||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "TransformationRequest{"
|
||||
+ "outputHeight="
|
||||
+ outputHeight
|
||||
+ ", audioMimeType='"
|
||||
+ audioMimeType
|
||||
+ '\''
|
||||
+ ", videoMimeType='"
|
||||
+ videoMimeType
|
||||
+ '\''
|
||||
+ ", hdrMode="
|
||||
+ hdrMode
|
||||
+ '}';
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a new {@link TransformationRequest.Builder} initialized with the values of this
|
||||
* instance.
|
||||
|
|
|
|||
Loading…
Reference in a new issue