mirror of
https://github.com/samsonjs/media.git
synced 2026-04-04 11:05:47 +00:00
Add TransformationRequest toString method
PiperOrigin-RevId: 536727079
This commit is contained in:
parent
0ddc024c69
commit
108000834b
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