fix(android): correct videoTrack type definitions to match Android implementation (#4778)
This commit is contained in:
@@ -197,7 +197,7 @@ export type OnBandwidthUpdateData = Readonly<{
|
|||||||
bitrate: Int32;
|
bitrate: Int32;
|
||||||
width?: Float;
|
width?: Float;
|
||||||
height?: Float;
|
height?: Float;
|
||||||
trackId?: Int32;
|
trackId?: string;
|
||||||
}>;
|
}>;
|
||||||
|
|
||||||
export type OnSeekData = Readonly<{
|
export type OnSeekData = Readonly<{
|
||||||
@@ -248,7 +248,7 @@ export type OnTextTrackDataChangedData = Readonly<{
|
|||||||
export type OnVideoTracksData = Readonly<{
|
export type OnVideoTracksData = Readonly<{
|
||||||
videoTracks: {
|
videoTracks: {
|
||||||
index: Int32;
|
index: Int32;
|
||||||
tracksId?: string;
|
trackId?: string;
|
||||||
codecs?: string;
|
codecs?: string;
|
||||||
width?: Float;
|
width?: Float;
|
||||||
height?: Float;
|
height?: Float;
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ export type OnLoadData = Readonly<{
|
|||||||
}[];
|
}[];
|
||||||
videoTracks: {
|
videoTracks: {
|
||||||
index: number;
|
index: number;
|
||||||
tracksID?: string;
|
trackId?: string;
|
||||||
codecs?: string;
|
codecs?: string;
|
||||||
width?: number;
|
width?: number;
|
||||||
height?: number;
|
height?: number;
|
||||||
|
|||||||
Reference in New Issue
Block a user