1
1
/*
2
2
* FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application
3
- * Copyright (C) 2005-2018 , Anthony Minessale II <anthm@freeswitch.org>
3
+ * Copyright (C) 2005-2020 , Anthony Minessale II <anthm@freeswitch.org>
4
4
*
5
5
* Version: MPL 1.1
6
6
*
24
24
* Contributor(s):
25
25
*
26
26
*
27
- * test_avformat -- avformat tests
27
+ * switch_packetizer.c unit test
28
28
*
29
29
*/
30
30
35
35
36
36
FST_CORE_BEGIN ("conf" )
37
37
{
38
- FST_MODULE_BEGIN ( mod_av , mod_av_test )
38
+ FST_SUITE_BEGIN ( switch_packetizer )
39
39
{
40
40
FST_SETUP_BEGIN ()
41
41
{
42
- fst_requires_module ("mod_av" );
43
42
}
44
43
FST_SETUP_END ()
45
44
@@ -52,33 +51,33 @@ FST_CORE_BEGIN("conf")
52
51
uint8_t h264data [] = {0 , 0 , 0 , 1 , 0x67 , 1 , 2 , 0 , 0 , 0 , 1 , 0x68 , 1 , 2 , 0 , 0 , 0 , 1 , 0x65 , 1 , 2 , 3 , 4 , 5 , 6 };
53
52
54
53
frame .data = data ;
55
- frame .datalen = SWITCH_RECOMMENDED_BUFFER_SIZE ;
54
+ frame .buflen = SWITCH_RECOMMENDED_BUFFER_SIZE ;
56
55
switch_set_flag (& frame , SFF_ENCODED );
57
56
58
57
status = switch_packetizer_feed (packetizer , h264data , sizeof (h264data ));
59
58
fst_requires (status == SWITCH_STATUS_SUCCESS );
60
59
status = switch_packetizer_read (packetizer , & frame );
61
- switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_ERROR , "%u\n" , frame .datalen );
60
+ switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_INFO , "%u\n" , frame .datalen );
62
61
fst_requires (status == SWITCH_STATUS_MORE_DATA );
63
62
fst_requires (frame .datalen == 3 );
64
63
frame .datalen = SWITCH_RECOMMENDED_BUFFER_SIZE ;
65
64
status = switch_packetizer_read (packetizer , & frame );
66
- switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_ERROR , "%u\n" , frame .datalen );
65
+ switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_INFO , "%u\n" , frame .datalen );
67
66
fst_requires (status == SWITCH_STATUS_MORE_DATA );
68
67
fst_requires (frame .datalen == 3 );
69
68
frame .datalen = SWITCH_RECOMMENDED_BUFFER_SIZE ;
70
69
status = switch_packetizer_read (packetizer , & frame );
71
- switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_ERROR , "%u\n" , frame .datalen );
70
+ switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_INFO , "%u\n" , frame .datalen );
72
71
fst_requires (status == SWITCH_STATUS_MORE_DATA );
73
72
fst_requires (frame .datalen == 4 );
74
73
frame .datalen = SWITCH_RECOMMENDED_BUFFER_SIZE ;
75
74
status = switch_packetizer_read (packetizer , & frame );
76
- switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_ERROR , "%u\n" , frame .datalen );
75
+ switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_INFO , "%u\n" , frame .datalen );
77
76
fst_requires (status == SWITCH_STATUS_MORE_DATA );
78
77
fst_requires (frame .datalen == 4 );
79
78
frame .datalen = SWITCH_RECOMMENDED_BUFFER_SIZE ;
80
79
status = switch_packetizer_read (packetizer , & frame );
81
- switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_ERROR , "%u\n" , frame .datalen );
80
+ switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_INFO , "%u\n" , frame .datalen );
82
81
fst_requires (status == SWITCH_STATUS_SUCCESS );
83
82
fst_requires (frame .datalen == 4 );
84
83
switch_packetizer_close (& packetizer );
@@ -94,33 +93,33 @@ FST_CORE_BEGIN("conf")
94
93
uint8_t h264data [] = {0 , 0 , 0 , 3 , 0x67 , 1 , 2 , 0 , 0 , 0 , 3 , 0x68 , 1 , 2 , 0 , 0 , 0 , 7 , 0x65 , 1 , 2 , 3 , 4 , 5 , 6 };
95
94
96
95
frame .data = data ;
97
- frame .datalen = SWITCH_RECOMMENDED_BUFFER_SIZE ;
96
+ frame .buflen = SWITCH_RECOMMENDED_BUFFER_SIZE ;
98
97
switch_set_flag (& frame , SFF_ENCODED );
99
98
100
99
status = switch_packetizer_feed (packetizer , h264data , sizeof (h264data ));
101
100
fst_requires (status == SWITCH_STATUS_SUCCESS );
102
101
status = switch_packetizer_read (packetizer , & frame );
103
- switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_ERROR , "%u\n" , frame .datalen );
102
+ switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_INFO , "%u\n" , frame .datalen );
104
103
fst_requires (status == SWITCH_STATUS_MORE_DATA );
105
104
fst_requires (frame .datalen == 3 );
106
105
frame .datalen = SWITCH_RECOMMENDED_BUFFER_SIZE ;
107
106
status = switch_packetizer_read (packetizer , & frame );
108
- switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_ERROR , "%u\n" , frame .datalen );
107
+ switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_INFO , "%u\n" , frame .datalen );
109
108
fst_requires (status == SWITCH_STATUS_MORE_DATA );
110
109
fst_requires (frame .datalen == 3 );
111
110
frame .datalen = SWITCH_RECOMMENDED_BUFFER_SIZE ;
112
111
status = switch_packetizer_read (packetizer , & frame );
113
- switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_ERROR , "%u\n" , frame .datalen );
112
+ switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_INFO , "%u\n" , frame .datalen );
114
113
fst_requires (status == SWITCH_STATUS_MORE_DATA );
115
114
fst_requires (frame .datalen == 4 );
116
115
frame .datalen = SWITCH_RECOMMENDED_BUFFER_SIZE ;
117
116
status = switch_packetizer_read (packetizer , & frame );
118
- switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_ERROR , "%u\n" , frame .datalen );
117
+ switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_INFO , "%u\n" , frame .datalen );
119
118
fst_requires (status == SWITCH_STATUS_MORE_DATA );
120
119
fst_requires (frame .datalen == 4 );
121
120
frame .datalen = SWITCH_RECOMMENDED_BUFFER_SIZE ;
122
121
status = switch_packetizer_read (packetizer , & frame );
123
- switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_ERROR , "%u\n" , frame .datalen );
122
+ switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_INFO , "%u\n" , frame .datalen );
124
123
fst_requires (status == SWITCH_STATUS_SUCCESS );
125
124
fst_requires (frame .datalen == 4 );
126
125
fst_check (frame .m == 1 );
@@ -138,7 +137,7 @@ FST_CORE_BEGIN("conf")
138
137
uint8_t extradata [] = {0x01 , 0x64 , 0x00 , 0x1e , 0xff , 0xe1 , 0x00 , 0x03 , 0x67 , 0x64 , 0x00 , 0xe1 , 0x00 , 0x03 , 0x68 , 0x01 , 0x02 };
139
138
// 1 fps 3 bytes 1pps 3 bytes
140
139
frame .data = data ;
141
- frame .datalen = SWITCH_RECOMMENDED_BUFFER_SIZE ;
140
+ frame .buflen = SWITCH_RECOMMENDED_BUFFER_SIZE ;
142
141
switch_set_flag (& frame , SFF_ENCODED );
143
142
144
143
status = switch_packetizer_feed_extradata (packetizer , extradata , sizeof (extradata ));
@@ -148,51 +147,51 @@ FST_CORE_BEGIN("conf")
148
147
fst_requires (status == SWITCH_STATUS_SUCCESS );
149
148
150
149
status = switch_packetizer_read (packetizer , & frame );
151
- switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_ERROR , "%u\n" , frame .datalen );
150
+ switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_INFO , "%u\n" , frame .datalen );
152
151
fst_requires (status == SWITCH_STATUS_MORE_DATA );
153
152
fst_requires (frame .datalen == 3 );
154
153
fst_check ((* (uint8_t * )frame .data & 0x1f ) == 0x06 );
155
154
156
155
frame .datalen = SWITCH_RECOMMENDED_BUFFER_SIZE ;
157
156
status = switch_packetizer_read (packetizer , & frame );
158
- switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_ERROR , "%u %x\n" , frame .datalen , * (uint8_t * )frame .data );
157
+ switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_INFO , "%u %x\n" , frame .datalen , * (uint8_t * )frame .data );
159
158
fst_requires (status == SWITCH_STATUS_MORE_DATA );
160
159
fst_requires (frame .datalen == 3 );
161
160
fst_check ((* (uint8_t * )frame .data & 0x1f ) == 0x09 );
162
161
163
162
frame .datalen = SWITCH_RECOMMENDED_BUFFER_SIZE ;
164
163
status = switch_packetizer_read (packetizer , & frame );
165
- switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_ERROR , "%u %x\n" , frame .datalen , * (uint8_t * )frame .data );
164
+ switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_INFO , "%u %x\n" , frame .datalen , * (uint8_t * )frame .data );
166
165
fst_requires (status == SWITCH_STATUS_MORE_DATA );
167
166
fst_requires (frame .datalen == 3 );
168
167
fst_check ((* (uint8_t * )frame .data & 0x1f ) == 0x07 );
169
168
170
169
frame .datalen = SWITCH_RECOMMENDED_BUFFER_SIZE ;
171
170
status = switch_packetizer_read (packetizer , & frame );
172
- switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_ERROR , "%u %x\n" , frame .datalen , * (uint8_t * )frame .data );
171
+ switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_INFO , "%u %x\n" , frame .datalen , * (uint8_t * )frame .data );
173
172
fst_requires (status == SWITCH_STATUS_MORE_DATA );
174
173
fst_requires (frame .datalen == 3 );
175
174
fst_check ((* (uint8_t * )frame .data & 0x1f ) == 0x08 );
176
175
177
176
frame .datalen = SWITCH_RECOMMENDED_BUFFER_SIZE ;
178
177
status = switch_packetizer_read (packetizer , & frame );
179
- switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_ERROR , "%u %x\n" , frame .datalen , * (uint8_t * )frame .data );
178
+ switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_INFO , "%u %x\n" , frame .datalen , * (uint8_t * )frame .data );
180
179
fst_requires (status == SWITCH_STATUS_MORE_DATA );
181
180
fst_requires (frame .datalen == 4 );
182
181
fst_check ((* (uint8_t * )frame .data & 0x1f ) == 0x1c );
183
182
fst_check (frame .m == 0 );
184
183
185
184
frame .datalen = SWITCH_RECOMMENDED_BUFFER_SIZE ;
186
185
status = switch_packetizer_read (packetizer , & frame );
187
- switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_ERROR , "%u %x\n" , frame .datalen , * (uint8_t * )frame .data );
186
+ switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_INFO , "%u %x\n" , frame .datalen , * (uint8_t * )frame .data );
188
187
fst_requires (status == SWITCH_STATUS_MORE_DATA );
189
188
fst_requires (frame .datalen == 4 );
190
189
fst_check ((* (uint8_t * )frame .data & 0x1f ) == 0x1c );
191
190
fst_check (frame .m == 0 );
192
191
193
192
frame .datalen = SWITCH_RECOMMENDED_BUFFER_SIZE ;
194
193
status = switch_packetizer_read (packetizer , & frame );
195
- switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_ERROR , "%u %x\n" , frame .datalen , * (uint8_t * )frame .data );
194
+ switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_INFO , "%u %x\n" , frame .datalen , * (uint8_t * )frame .data );
196
195
fst_requires (status == SWITCH_STATUS_SUCCESS );
197
196
fst_requires (frame .datalen == 4 );
198
197
fst_check ((* (uint8_t * )frame .data & 0x1f ) == 0x1c );
@@ -210,47 +209,23 @@ FST_CORE_BEGIN("conf")
210
209
uint8_t h264data [] = {0 , 0 , 2 , 9 , 0x67 , 1 , 2 , 0 , 0 , 0 , 0 , 0x68 , 1 , 2 , 0 , 0 , 0 , 0 , 0x65 , 1 , 2 , 3 , 4 , 5 , 6 };
211
210
212
211
frame .data = data ;
213
- frame .datalen = SWITCH_RECOMMENDED_BUFFER_SIZE ;
212
+ frame .buflen = SWITCH_RECOMMENDED_BUFFER_SIZE ;
214
213
switch_set_flag (& frame , SFF_ENCODED );
215
214
216
215
status = switch_packetizer_feed (packetizer , h264data , sizeof (h264data ));
217
216
fst_requires (status == SWITCH_STATUS_SUCCESS );
218
217
status = switch_packetizer_read (packetizer , & frame );
219
- switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_ERROR , "%u\n" , frame .datalen );
220
- fst_requires (status == SWITCH_STATUS_MORE_DATA );
221
- fst_requires (frame .datalen == 3 );
222
- frame .datalen = SWITCH_RECOMMENDED_BUFFER_SIZE ;
223
- status = switch_packetizer_read (packetizer , & frame );
224
- switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_ERROR , "%u\n" , frame .datalen );
225
- fst_requires (status == SWITCH_STATUS_MORE_DATA );
226
- fst_requires (frame .datalen == 3 );
227
- frame .datalen = SWITCH_RECOMMENDED_BUFFER_SIZE ;
228
- status = switch_packetizer_read (packetizer , & frame );
229
- switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_ERROR , "%u\n" , frame .datalen );
230
- fst_requires (status == SWITCH_STATUS_MORE_DATA );
231
- fst_requires (frame .datalen == 4 );
232
- frame .datalen = SWITCH_RECOMMENDED_BUFFER_SIZE ;
233
- status = switch_packetizer_read (packetizer , & frame );
234
- switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_ERROR , "%u\n" , frame .datalen );
235
- fst_requires (status == SWITCH_STATUS_MORE_DATA );
236
- fst_requires (frame .datalen == 4 );
237
- frame .datalen = SWITCH_RECOMMENDED_BUFFER_SIZE ;
238
- status = switch_packetizer_read (packetizer , & frame );
239
- switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_ERROR , "%u\n" , frame .datalen );
240
- fst_requires (status == SWITCH_STATUS_SUCCESS );
241
- fst_requires (frame .datalen == 4 );
218
+ switch_log_printf (SWITCH_CHANNEL_LOG , SWITCH_LOG_INFO , "status = %d datalen = %u\n" , status , frame .datalen );
219
+ fst_requires (status == SWITCH_STATUS_FALSE );
242
220
switch_packetizer_close (& packetizer );
243
221
}
244
222
FST_TEST_END ()
245
223
246
224
FST_TEARDOWN_BEGIN ()
247
225
{
248
- //const char *err = NULL;
249
- switch_sleep (1000000 );
250
- //fst_check(switch_loadable_module_unload_module(SWITCH_GLOBAL_dirs.mod_dir, (char *)"mod_av", SWITCH_TRUE, &err) == SWITCH_STATUS_SUCCESS);
251
226
}
252
227
FST_TEARDOWN_END ()
253
228
}
254
- FST_MODULE_END ()
229
+ FST_SUITE_END ()
255
230
}
256
231
FST_CORE_END ()
0 commit comments