tirtc-devtools-cli 0.3.0 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -2
- package/dist/cli/src/index.js +4 -0
- package/dist/cli/src/role_driver.d.ts +4 -0
- package/dist/cli/src/role_driver.js +42 -0
- package/dist/cli/src/role_live_log.js +14 -2
- package/package.json +1 -1
- package/vendor/devtools/driver/linux-x64/devtools_driver_probe +0 -0
- package/vendor/devtools/driver/macos-arm64/devtools_driver_probe +0 -0
- package/vendor/runtime/linux-x64/include/tirtc/audio.h +50 -3
- package/vendor/runtime/linux-x64/include/tirtc/audio_codec.h +6 -0
- package/vendor/runtime/linux-x64/include/tirtc/audio_format.h +20 -0
- package/vendor/runtime/linux-x64/include/tirtc/audio_frame.h +3 -4
- package/vendor/runtime/linux-x64/include/tirtc/audio_io.h +2 -3
- package/vendor/runtime/linux-x64/include/tirtc/audio_processing.h +1 -0
- package/vendor/runtime/linux-x64/include/tirtc/av.h +7 -2
- package/vendor/runtime/linux-x64/include/tirtc/media_codec.h +1 -0
- package/vendor/runtime/linux-x64/include/tirtc/media_downlink.h +28 -0
- package/vendor/runtime/linux-x64/include/tirtc/media_uplink.h +2 -1
- package/vendor/runtime/linux-x64/include/tirtc/transport.h +1 -1
- package/vendor/runtime/linux-x64/include/tirtc/trp.h +1 -0
- package/vendor/runtime/linux-x64/lib/libTiRTC.a +0 -0
- package/vendor/runtime/linux-x64/lib/libmatrix_runtime_audio.a +0 -0
- package/vendor/runtime/linux-x64/lib/libmatrix_runtime_facade.a +0 -0
- package/vendor/runtime/linux-x64/lib/libmatrix_runtime_foundation_logging.a +0 -0
- package/vendor/runtime/linux-x64/lib/libmatrix_runtime_media.a +0 -0
- package/vendor/runtime/linux-x64/lib/libmatrix_runtime_transport.a +0 -0
- package/vendor/runtime/linux-x64/lib/libmatrix_runtime_video.a +0 -0
- package/vendor/runtime/linux-x64/lib/libmbedtls.a +0 -0
- package/vendor/runtime/linux-x64/lib/libusrsctp.a +0 -0
- package/vendor/runtime/linux-x64/lib/libwebrtc.a +0 -0
- package/vendor/runtime/linux-x64/manifest.txt +23 -19
- package/vendor/runtime/macos-arm64/include/tirtc/audio.h +50 -3
- package/vendor/runtime/macos-arm64/include/tirtc/audio_codec.h +6 -0
- package/vendor/runtime/macos-arm64/include/tirtc/audio_format.h +20 -0
- package/vendor/runtime/macos-arm64/include/tirtc/audio_frame.h +3 -4
- package/vendor/runtime/macos-arm64/include/tirtc/audio_io.h +2 -3
- package/vendor/runtime/macos-arm64/include/tirtc/audio_processing.h +1 -0
- package/vendor/runtime/macos-arm64/include/tirtc/av.h +7 -2
- package/vendor/runtime/macos-arm64/include/tirtc/media_codec.h +1 -0
- package/vendor/runtime/macos-arm64/include/tirtc/media_downlink.h +28 -0
- package/vendor/runtime/macos-arm64/include/tirtc/media_uplink.h +2 -1
- package/vendor/runtime/macos-arm64/include/tirtc/transport.h +1 -1
- package/vendor/runtime/macos-arm64/include/tirtc/trp.h +1 -0
- package/vendor/runtime/macos-arm64/lib/libTiRTC.a +0 -0
- package/vendor/runtime/macos-arm64/lib/libmatrix_runtime_audio.a +0 -0
- package/vendor/runtime/macos-arm64/lib/libmatrix_runtime_facade.a +0 -0
- package/vendor/runtime/macos-arm64/lib/libmatrix_runtime_foundation_http.a +0 -0
- package/vendor/runtime/macos-arm64/lib/libmatrix_runtime_foundation_logging.a +0 -0
- package/vendor/runtime/macos-arm64/lib/libmatrix_runtime_media.a +0 -0
- package/vendor/runtime/macos-arm64/lib/libmatrix_runtime_transport.a +0 -0
- package/vendor/runtime/macos-arm64/lib/libmatrix_runtime_video.a +0 -0
- package/vendor/runtime/macos-arm64/manifest.txt +21 -20
- package/vendor/runtime/script/prepare_runtime_media_dataset.sh +198 -95
|
@@ -42,7 +42,11 @@ typedef enum TirtcAudioOutputState {
|
|
|
42
42
|
} TirtcAudioOutputState;
|
|
43
43
|
|
|
44
44
|
typedef struct TirtcAudioInputOptions {
|
|
45
|
-
|
|
45
|
+
TirtcMediaCodec codec;
|
|
46
|
+
|
|
47
|
+
uint32_t sample_rate_hz;
|
|
48
|
+
|
|
49
|
+
uint32_t channels;
|
|
46
50
|
|
|
47
51
|
TirtcAudioAecMode aec_mode;
|
|
48
52
|
|
|
@@ -61,9 +65,27 @@ typedef struct TirtcAudioInputOptions {
|
|
|
61
65
|
typedef struct TirtcAudioEncodedInputOptions {
|
|
62
66
|
TirtcMediaCodec codec;
|
|
63
67
|
|
|
64
|
-
|
|
68
|
+
uint32_t sample_rate_hz;
|
|
69
|
+
|
|
70
|
+
uint32_t channels;
|
|
65
71
|
} TirtcAudioEncodedInputOptions;
|
|
66
72
|
|
|
73
|
+
typedef struct TirtcAudioEncodedInputFrame {
|
|
74
|
+
TirtcMediaCodec codec;
|
|
75
|
+
|
|
76
|
+
uint32_t sample_rate_hz;
|
|
77
|
+
|
|
78
|
+
uint32_t channels;
|
|
79
|
+
|
|
80
|
+
uint32_t samples_per_channel;
|
|
81
|
+
|
|
82
|
+
int64_t pts_us;
|
|
83
|
+
|
|
84
|
+
const void* data;
|
|
85
|
+
|
|
86
|
+
size_t data_bytes;
|
|
87
|
+
} TirtcAudioEncodedInputFrame;
|
|
88
|
+
|
|
67
89
|
typedef struct TirtcAudioOutputOptions {
|
|
68
90
|
uint32_t volume_percent;
|
|
69
91
|
|
|
@@ -91,9 +113,30 @@ typedef struct TirtcPendingDurationMetrics {
|
|
|
91
113
|
uint64_t decoded_duration_ms;
|
|
92
114
|
} TirtcPendingDurationMetrics;
|
|
93
115
|
|
|
116
|
+
typedef struct TirtcOutputLatencyStageMetrics {
|
|
117
|
+
uint64_t latest_ms;
|
|
118
|
+
uint64_t average_ms;
|
|
119
|
+
uint64_t peak_ms;
|
|
120
|
+
uint64_t sample_count;
|
|
121
|
+
uint64_t unavailable_count;
|
|
122
|
+
} TirtcOutputLatencyStageMetrics;
|
|
123
|
+
|
|
124
|
+
typedef struct TirtcOutputLocalLatencyMetrics {
|
|
125
|
+
uint32_t window_duration_ms;
|
|
126
|
+
TirtcOutputLatencyStageMetrics total;
|
|
127
|
+
TirtcOutputLatencyStageMetrics buffer;
|
|
128
|
+
TirtcOutputLatencyStageMetrics decode_or_ready;
|
|
129
|
+
TirtcOutputLatencyStageMetrics output;
|
|
130
|
+
} TirtcOutputLocalLatencyMetrics;
|
|
131
|
+
|
|
94
132
|
typedef struct TirtcAudioOutputMetricsSnapshot {
|
|
95
133
|
TirtcOutputStutterMetrics stutter;
|
|
96
134
|
TirtcPendingDurationMetrics pending;
|
|
135
|
+
double input_bitrate_kbps;
|
|
136
|
+
double input_packet_rate;
|
|
137
|
+
double render_callback_rate;
|
|
138
|
+
uint32_t rate_window_duration_ms;
|
|
139
|
+
TirtcOutputLocalLatencyMetrics local_latency;
|
|
97
140
|
} TirtcAudioOutputMetricsSnapshot;
|
|
98
141
|
|
|
99
142
|
/**
|
|
@@ -105,6 +148,10 @@ typedef struct TirtcAudioOutputMetricsSnapshot {
|
|
|
105
148
|
*/
|
|
106
149
|
typedef struct TirtcAudioOutputDebugSnapshot {
|
|
107
150
|
TirtcMediaCodec codec;
|
|
151
|
+
|
|
152
|
+
uint32_t sample_rate_hz;
|
|
153
|
+
|
|
154
|
+
uint32_t channels;
|
|
108
155
|
} TirtcAudioOutputDebugSnapshot;
|
|
109
156
|
|
|
110
157
|
/**
|
|
@@ -191,7 +238,7 @@ TirtcError tirtc_audio_encoded_input_attach(TirtcAudioEncodedInput* input, Tirtc
|
|
|
191
238
|
TirtcError tirtc_audio_encoded_input_detach(TirtcAudioEncodedInput* input, TirtcConn* connection);
|
|
192
239
|
|
|
193
240
|
TirtcError tirtc_audio_encoded_input_submit_frame(TirtcAudioEncodedInput* input,
|
|
194
|
-
const
|
|
241
|
+
const TirtcAudioEncodedInputFrame* frame);
|
|
195
242
|
|
|
196
243
|
void tirtc_audio_encoded_input_destroy(TirtcAudioEncodedInput* input);
|
|
197
244
|
|
|
@@ -16,6 +16,12 @@ TirtcError tirtc_audio_g711a_encode(const TirtcAudioPcmFrame* pcm_frame, void* o
|
|
|
16
16
|
TirtcError tirtc_audio_g711a_decode(const TirtcAudioEncodedFrame* in_frame, void* out_buffer,
|
|
17
17
|
size_t out_buffer_capacity, TirtcAudioPcmFrame* out_frame);
|
|
18
18
|
|
|
19
|
+
TirtcError tirtc_audio_aac_encode(const TirtcAudioPcmFrame* pcm_frame, void* out_buffer,
|
|
20
|
+
size_t out_buffer_capacity, TirtcAudioEncodedFrame* out_frame);
|
|
21
|
+
|
|
22
|
+
TirtcError tirtc_audio_aac_decode(const TirtcAudioEncodedFrame* in_frame, void* out_buffer,
|
|
23
|
+
size_t out_buffer_capacity, TirtcAudioPcmFrame* out_frame);
|
|
24
|
+
|
|
19
25
|
#ifdef __cplusplus
|
|
20
26
|
}
|
|
21
27
|
#endif
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
#ifndef TIRTC_MEDIA_CONTRACT_AUDIO_FORMAT_H_
|
|
2
|
+
#define TIRTC_MEDIA_CONTRACT_AUDIO_FORMAT_H_
|
|
3
|
+
|
|
4
|
+
#include <stdint.h>
|
|
5
|
+
|
|
6
|
+
#ifdef __cplusplus
|
|
7
|
+
extern "C" {
|
|
8
|
+
#endif
|
|
9
|
+
|
|
10
|
+
typedef struct TirtcAudioFormat {
|
|
11
|
+
uint32_t sample_rate_hz;
|
|
12
|
+
uint32_t channels;
|
|
13
|
+
uint32_t bits_per_sample;
|
|
14
|
+
} TirtcAudioFormat;
|
|
15
|
+
|
|
16
|
+
#ifdef __cplusplus
|
|
17
|
+
}
|
|
18
|
+
#endif
|
|
19
|
+
|
|
20
|
+
#endif // TIRTC_MEDIA_CONTRACT_AUDIO_FORMAT_H_
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
#include <stddef.h>
|
|
5
5
|
#include <stdint.h>
|
|
6
6
|
|
|
7
|
-
#include "tirtc/
|
|
7
|
+
#include "tirtc/audio_format.h"
|
|
8
8
|
#include "tirtc/media_codec.h"
|
|
9
9
|
|
|
10
10
|
#ifdef __cplusplus
|
|
@@ -12,17 +12,16 @@ extern "C" {
|
|
|
12
12
|
#endif
|
|
13
13
|
|
|
14
14
|
typedef struct TirtcAudioPcmFrame {
|
|
15
|
-
|
|
15
|
+
TirtcAudioFormat format;
|
|
16
16
|
uint32_t samples_per_channel;
|
|
17
17
|
int64_t pts_us;
|
|
18
|
-
/* Mutable PCM payload for capture, processing, and render-fill paths. */
|
|
19
18
|
void* data;
|
|
20
19
|
size_t data_bytes;
|
|
21
20
|
} TirtcAudioPcmFrame;
|
|
22
21
|
|
|
23
22
|
typedef struct TirtcAudioEncodedFrame {
|
|
24
23
|
TirtcMediaCodec codec;
|
|
25
|
-
|
|
24
|
+
TirtcAudioFormat format;
|
|
26
25
|
uint32_t samples_per_channel;
|
|
27
26
|
int64_t pts_us;
|
|
28
27
|
const void* data;
|
|
@@ -14,8 +14,7 @@ typedef struct TirtcAudioAin TirtcAudioAin;
|
|
|
14
14
|
typedef struct TirtcAudioAout TirtcAudioAout;
|
|
15
15
|
|
|
16
16
|
typedef struct TirtcAudioIoConfig {
|
|
17
|
-
|
|
18
|
-
/* AIN uses fixed 10 ms mono blocks; AOUT may use larger callback-sized multiples. */
|
|
17
|
+
TirtcAudioFormat format;
|
|
19
18
|
uint32_t samples_per_buffer;
|
|
20
19
|
} TirtcAudioIoConfig;
|
|
21
20
|
|
|
@@ -29,7 +28,7 @@ typedef void (*TirtcAudioAinOnFrameFn)(TirtcAudioAin* ain, const TirtcAudioPcmFr
|
|
|
29
28
|
void* user_data);
|
|
30
29
|
|
|
31
30
|
/*
|
|
32
|
-
* AOUT pre-fills
|
|
31
|
+
* AOUT pre-fills format, samples_per_channel, data, and data_bytes before
|
|
33
32
|
* calling render. The callback contract expects a non-negative rendered PCM
|
|
34
33
|
* byte count. Backends defensively clamp negative returns to zero and zero-fill
|
|
35
34
|
* any remaining buffer space.
|
|
@@ -46,6 +46,12 @@ typedef struct TirtcVideoOutputMetricsSnapshot {
|
|
|
46
46
|
TirtcVideoOutputStartupMetrics startup;
|
|
47
47
|
TirtcOutputStutterMetrics stutter;
|
|
48
48
|
TirtcPendingDurationMetrics pending;
|
|
49
|
+
double input_bitrate_kbps;
|
|
50
|
+
double input_fps;
|
|
51
|
+
double decoded_fps;
|
|
52
|
+
double render_fps;
|
|
53
|
+
uint32_t rate_window_duration_ms;
|
|
54
|
+
TirtcOutputLocalLatencyMetrics local_latency;
|
|
49
55
|
} TirtcVideoOutputMetricsSnapshot;
|
|
50
56
|
|
|
51
57
|
/**
|
|
@@ -53,8 +59,7 @@ typedef struct TirtcVideoOutputMetricsSnapshot {
|
|
|
53
59
|
*
|
|
54
60
|
* The snapshot is a caller-owned value copy. `resolved_decoder_backend` is the runtime route that
|
|
55
61
|
* has actually locked, so AUTO fallback reports the concrete backend family instead of the request.
|
|
56
|
-
* Zero values mean no current fact or only cached zero-state is available.
|
|
57
|
-
* a new V2 struct/function instead of extending this layout.
|
|
62
|
+
* Zero values mean no current fact or only cached zero-state is available.
|
|
58
63
|
*/
|
|
59
64
|
typedef struct TirtcVideoOutputDebugSnapshot {
|
|
60
65
|
TirtcMediaCodec codec;
|
|
@@ -8,6 +8,7 @@ extern "C" {
|
|
|
8
8
|
typedef enum TirtcMediaCodec {
|
|
9
9
|
TIRTC_MEDIA_CODEC_NONE = 0,
|
|
10
10
|
TIRTC_MEDIA_CODEC_AUDIO_G711A = 1,
|
|
11
|
+
TIRTC_MEDIA_CODEC_AUDIO_AAC = 2,
|
|
11
12
|
/* Reserved shared identifiers; concrete video implementations live outside media-contract. */
|
|
12
13
|
TIRTC_MEDIA_CODEC_VIDEO_H264 = 65,
|
|
13
14
|
TIRTC_MEDIA_CODEC_VIDEO_H265 = 66,
|
|
@@ -66,9 +66,30 @@ typedef struct TirtcMediaDownlinkPendingMetricsSnapshot {
|
|
|
66
66
|
uint64_t decoded_pending_duration_ms;
|
|
67
67
|
} TirtcMediaDownlinkPendingMetricsSnapshot;
|
|
68
68
|
|
|
69
|
+
typedef struct TirtcMediaDownlinkLatencyStageMetricsSnapshot {
|
|
70
|
+
uint64_t latest_ms;
|
|
71
|
+
uint64_t average_ms;
|
|
72
|
+
uint64_t peak_ms;
|
|
73
|
+
uint64_t sample_count;
|
|
74
|
+
uint64_t unavailable_count;
|
|
75
|
+
} TirtcMediaDownlinkLatencyStageMetricsSnapshot;
|
|
76
|
+
|
|
77
|
+
typedef struct TirtcMediaDownlinkLocalLatencyMetricsSnapshot {
|
|
78
|
+
uint32_t window_duration_ms;
|
|
79
|
+
TirtcMediaDownlinkLatencyStageMetricsSnapshot total;
|
|
80
|
+
TirtcMediaDownlinkLatencyStageMetricsSnapshot buffer;
|
|
81
|
+
TirtcMediaDownlinkLatencyStageMetricsSnapshot decode_or_ready;
|
|
82
|
+
TirtcMediaDownlinkLatencyStageMetricsSnapshot output;
|
|
83
|
+
} TirtcMediaDownlinkLocalLatencyMetricsSnapshot;
|
|
84
|
+
|
|
69
85
|
typedef struct TirtcMediaDownlinkAudioMetricsSnapshot {
|
|
70
86
|
TirtcMediaDownlinkStutterMetricsSnapshot stutter;
|
|
71
87
|
TirtcMediaDownlinkPendingMetricsSnapshot pending;
|
|
88
|
+
double input_bitrate_kbps;
|
|
89
|
+
double input_packet_rate;
|
|
90
|
+
double render_callback_rate;
|
|
91
|
+
uint32_t rate_window_duration_ms;
|
|
92
|
+
TirtcMediaDownlinkLocalLatencyMetricsSnapshot local_latency;
|
|
72
93
|
} TirtcMediaDownlinkAudioMetricsSnapshot;
|
|
73
94
|
|
|
74
95
|
typedef struct TirtcMediaDownlinkVideoStartupMetricsSnapshot {
|
|
@@ -84,6 +105,12 @@ typedef struct TirtcMediaDownlinkVideoMetricsSnapshot {
|
|
|
84
105
|
TirtcMediaDownlinkVideoStartupMetricsSnapshot startup;
|
|
85
106
|
TirtcMediaDownlinkStutterMetricsSnapshot stutter;
|
|
86
107
|
TirtcMediaDownlinkPendingMetricsSnapshot pending;
|
|
108
|
+
double input_bitrate_kbps;
|
|
109
|
+
double input_fps;
|
|
110
|
+
double decoded_fps;
|
|
111
|
+
double render_fps;
|
|
112
|
+
uint32_t rate_window_duration_ms;
|
|
113
|
+
TirtcMediaDownlinkLocalLatencyMetricsSnapshot local_latency;
|
|
87
114
|
} TirtcMediaDownlinkVideoMetricsSnapshot;
|
|
88
115
|
|
|
89
116
|
/**
|
|
@@ -94,6 +121,7 @@ typedef struct TirtcMediaDownlinkVideoMetricsSnapshot {
|
|
|
94
121
|
*/
|
|
95
122
|
typedef struct TirtcMediaDownlinkAudioDebugSnapshot {
|
|
96
123
|
TirtcMediaCodec codec;
|
|
124
|
+
TirtcAudioFormat format;
|
|
97
125
|
} TirtcMediaDownlinkAudioDebugSnapshot;
|
|
98
126
|
|
|
99
127
|
/**
|
|
@@ -29,7 +29,8 @@ typedef enum TirtcMediaUplinkState {
|
|
|
29
29
|
} TirtcMediaUplinkState;
|
|
30
30
|
|
|
31
31
|
typedef struct TirtcMediaUplinkAudioOptions {
|
|
32
|
-
|
|
32
|
+
TirtcMediaCodec codec;
|
|
33
|
+
TirtcAudioFormat format;
|
|
33
34
|
TirtcAudioAecMode aec_mode;
|
|
34
35
|
TirtcAudioAgcLevel agc_level;
|
|
35
36
|
TirtcAudioAnsLevel ans_level;
|
|
@@ -139,7 +139,7 @@ typedef struct TirtcTransportConnServiceOptions {
|
|
|
139
139
|
* This is a service-level capacity contract. It applies to the listener as a
|
|
140
140
|
* whole, not to any single connection and not to any individual stream.
|
|
141
141
|
*
|
|
142
|
-
*
|
|
142
|
+
* Set to 0 to leave the listener capacity to the active transport backend.
|
|
143
143
|
*/
|
|
144
144
|
uint32_t max_connections;
|
|
145
145
|
} TirtcTransportConnServiceOptions;
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,28 +1,29 @@
|
|
|
1
1
|
platform=macos-arm64
|
|
2
2
|
profile=full
|
|
3
|
-
staged_at_utc=2026-05-
|
|
3
|
+
staged_at_utc=2026-05-13T16:33:31Z
|
|
4
4
|
source_sdk=/Users/allenfeng/Development/Repositories/tirtc-nexus/tirtc-matrix/.build/sdk/macos-arm64
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
6
|
+
04c3139f26d53aa2fb0a586a21ffb481a001c01e0412cd3414a952c9a9d336ba include/tirtc/audio.h
|
|
7
|
+
ce7ccffa054250a2dab0e2128e4701a66c7168e50e8c470dcff3bf609ff0959c include/tirtc/audio_codec.h
|
|
8
|
+
0b463d8adfcf45acb3f95fe3e2d94b37a26aaf37d293eb2b18274ddcb161f767 include/tirtc/audio_format.h
|
|
9
|
+
7cac5b8c0cef28526ee00800fa8b0d1e60897ab971a0801899cb0333c9189fde include/tirtc/audio_frame.h
|
|
10
|
+
6daadba731521c01a3cf11c5d8b2ef797238737c939e2da3045fc83ad89af04a include/tirtc/audio_io.h
|
|
10
11
|
c2e1f31dcc75be461c577d18b1cebe32774f212d51cb4dd2a5b5a9bfe62b693e include/tirtc/audio_io_android.h
|
|
11
12
|
878bb18220ac62304ec95807f31e83e050c8dac14811f873454f9b045028694a include/tirtc/audio_io_apple.h
|
|
12
13
|
0569eb1d043ee7fa8d45ca43143eca1a22e4c4bf1507ca7e045e010a3ecbc288 include/tirtc/audio_io_harmony.h
|
|
13
14
|
51cbc911fe9f9834046f0e0a1a7cdd814a8e194a615894a8b4d11f9e5f095610 include/tirtc/audio_io_windows.h
|
|
14
|
-
|
|
15
|
+
5acfd19fdcd8c9d96e4aee7c6f1d33a9211c0a5b0c0ab56d96e1b4dee48f3aa9 include/tirtc/audio_processing.h
|
|
15
16
|
0ca7c3c630b1242f51a0fd8154097c0a332b4c816a5707090e4381719852998c include/tirtc/audio_sample_rate.h
|
|
16
|
-
|
|
17
|
+
07ca1b210a6e334c1474f25446477681472154568ecf74557cb3dc9b3a730662 include/tirtc/av.h
|
|
17
18
|
b3e110ce04057d3be696b120d1abeaf6141711a1c63ca7f9bdf65ed5ec6e16d7 include/tirtc/error.h
|
|
18
19
|
ae805545a9515edc9b94262e72ad2c7b7d649288166f4daeb450d8a55e82ae0b include/tirtc/foundation/build_info.h
|
|
19
20
|
7cf8b372a3d48d4de4a65a04c7f102281a7b42cebb9ec247853d3c53afb63b6a include/tirtc/http.h
|
|
20
21
|
70bbf93b84d9d1a85f376d9986de570c1f658319e1e5ab6d621f7a4d41033f5c include/tirtc/logging.h
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
22
|
+
1419ac3fb5237d1d820bd30a6845b98aab3553463eb64e73623b64c663665f16 include/tirtc/media_codec.h
|
|
23
|
+
df11627da9bfbb87cb32582701f638d2a0ff5b6b77b49a3a3bab7509c62f0613 include/tirtc/media_downlink.h
|
|
24
|
+
9376af63fde915753146969291f0fefe2da6df28f7aa6310f7787048165150dc include/tirtc/media_uplink.h
|
|
25
|
+
57be6941026e7dd173e8779b2bb868532d65e41f7917aad476a31ac25c1cd6c3 include/tirtc/transport.h
|
|
26
|
+
fba7954919606e507b6a074440440903665217959699da89ca9dd206772c0ef0 include/tirtc/trp.h
|
|
26
27
|
92b3db6e2cb02265ad5db01881edce9d4e095b1dadf449dce5d8bb5362957e33 include/tirtc/video_codec.h
|
|
27
28
|
e51379666c199588cc33279ccf52248035d1cae3d1d468b1615ebf29f0b39c9c include/tirtc/video_frame.h
|
|
28
29
|
2a02645d82c58d433c7306a9f0bcd31d0f3e560b63822f7e80919761b81a6284 include/tirtc/video_io.h
|
|
@@ -32,16 +33,16 @@ cae0bbeb884e5466a56da15182c78cc22baab6c743f349a58d3595f623333585 include/tirtc/
|
|
|
32
33
|
65b5d24fe3a6bc2a299a2220148a153ba4eb0955a49c1c3baabf1fdfed8aabdd include/tirtc/video_io_windows.h
|
|
33
34
|
8cd6b66bea14890a665cc317f8572429b2c3e4463773f8b77c1e4dc30a4a8747 include/tirtc/video_processing.h
|
|
34
35
|
5052a464a34508f117fec46aa6b836871014229d4290d7d8caac862e0165ae8f lib/libTGTRP.a
|
|
35
|
-
|
|
36
|
+
41d64a3a9dd5cd4f51d45be501e8df2161a59847bb599b218ac55194673189f9 lib/libTiRTC.a
|
|
36
37
|
b39daee6a3d39bf0ca20c45084601133c4198de8dca848dcff6dd9c70ae99016 lib/libcrypto.a
|
|
37
38
|
c052857ef315e3d61db9c862cad10709a3a6b2487dc41799cbe4d74a805de875 lib/libcrypto.dylib
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
39
|
+
ae1647af1a4e6393627cf43a85fbe31e623f3854471c72259d76bdade1e3b761 lib/libmatrix_runtime_audio.a
|
|
40
|
+
1d38a3842c7978cb1fea5cad8ed7c423eb9e4a267c5d608ad91197dc6095c080 lib/libmatrix_runtime_facade.a
|
|
41
|
+
dbe1b38d7a35e840bc1d87873fa4da038b887f54858c57c2f123da70d24b25ce lib/libmatrix_runtime_foundation_http.a
|
|
42
|
+
5ef6101d4e2f38911a2bace0da43f589a43257106a9bb771940e0452e73c0ea0 lib/libmatrix_runtime_foundation_logging.a
|
|
43
|
+
a9ec001d09dbb0ce6074b25486cdb2f0441a701cdedf0c7041f902e6c928f02d lib/libmatrix_runtime_media.a
|
|
44
|
+
affb2fba91a51761ad79ff58805cfc96313376bf47867d12904b57360a340ed4 lib/libmatrix_runtime_transport.a
|
|
45
|
+
7286f29400c06bdd72a4176ab23b7782ad07dd78bbc8f8026d3a5b0dbe626625 lib/libmatrix_runtime_video.a
|
|
45
46
|
c11c65d373a127028350c41fa58cd2d1223f2b5d70a84e13b115d90daaba25ca lib/libssl.a
|
|
46
47
|
ef1c1104bbdd2528ed7b958fb7252bd6249875f92300b0c9577d6c4bd6c0d88a lib/libssl.dylib
|
|
47
48
|
e14e846e43d64e240fa0e5745bf4e702b79d0f2442e7f768beb990610735c71b lib/libtgrtc.dylib
|