13
13
extern "C" {
14
14
#endif
15
15
16
+ #include <stdbool.h>
17
+ #include <stdint.h>
18
+
16
19
#ifdef RTC_STATIC
17
20
#define RTC_C_EXPORT
18
21
#else // dynamic library
@@ -27,16 +30,6 @@ extern "C" {
27
30
#endif
28
31
#endif
29
32
30
- #ifdef _WIN32
31
- #ifdef CAPI_STDCALL
32
- #define RTC_API __stdcall
33
- #else
34
- #define RTC_API
35
- #endif
36
- #else // not WIN32
37
- #define RTC_API
38
- #endif
39
-
40
33
#ifndef RTC_ENABLE_WEBSOCKET
41
34
#define RTC_ENABLE_WEBSOCKET 1
42
35
#endif
@@ -53,8 +46,23 @@ extern "C" {
53
46
#define RTC_DEFAULT_MAXIMUM_PACKET_COUNT_FOR_NACK_CACHE ((unsigned)512)
54
47
#endif
55
48
56
- #include <stdbool.h>
57
- #include <stdint.h>
49
+ #ifdef _WIN32
50
+ #ifdef CAPI_STDCALL
51
+ #define RTC_API __stdcall
52
+ #else
53
+ #define RTC_API
54
+ #endif
55
+ #else // not WIN32
56
+ #define RTC_API
57
+ #endif
58
+
59
+ #if defined(__GNUC__ ) || defined(__clang__ )
60
+ #define RTC_DEPRECATED __attribute__((deprecated))
61
+ #elif defined(_MSC_VER )
62
+ #define RTC_DEPRECATED __declspec(deprecated)
63
+ #else
64
+ #define DEPRECATED
65
+ #endif
58
66
59
67
// libdatachannel C API
60
68
@@ -320,16 +328,19 @@ typedef struct {
320
328
uint16_t sequenceNumber ;
321
329
uint32_t timestamp ;
322
330
331
+ // H264, H265, AV1
332
+ uint16_t maxFragmentSize ; // Maximum fragment size, 0 means default
333
+
323
334
// H264/H265 only
324
335
rtcNalUnitSeparator nalSeparator ; // NAL unit separator
325
336
326
- // H264, H265, AV1
327
- uint16_t maxFragmentSize ; // Maximum fragment size
328
-
329
337
// AV1 only
330
338
rtcObuPacketization obuPacketization ; // OBU paketization for AV1 samples
331
339
332
- } rtcPacketizationHandlerInit ;
340
+ } rtcPacketizerInit ;
341
+
342
+ // Deprecated, do not use
343
+ typedef rtcPacketizerInit rtcPacketizationHandlerInit ;
333
344
334
345
typedef struct {
335
346
uint32_t ssrc ;
@@ -338,8 +349,6 @@ typedef struct {
338
349
const char * trackId ; // optional, track ID used in MSID
339
350
} rtcSsrcForTypeInit ;
340
351
341
- // Opaque message
342
-
343
352
// Opaque type used (via rtcMessage*) to reference an rtc::Message
344
353
typedef void * rtcMessage ;
345
354
@@ -349,34 +358,48 @@ typedef void *rtcMessage;
349
358
RTC_C_EXPORT rtcMessage * rtcCreateOpaqueMessage (void * data , int size );
350
359
RTC_C_EXPORT void rtcDeleteOpaqueMessage (rtcMessage * msg );
351
360
352
- // Set MediaInterceptor for peer connection
361
+ // Set MediaInterceptor on peer connection
353
362
RTC_C_EXPORT int rtcSetMediaInterceptorCallback (int id , rtcInterceptorCallbackFunc cb );
354
363
355
- // Set H264PacketizationHandler for track
356
- RTC_C_EXPORT int rtcSetH264PacketizationHandler (int tr , const rtcPacketizationHandlerInit * init );
357
-
358
- // Set H265PacketizationHandler for track
359
- RTC_C_EXPORT int rtcSetH265PacketizationHandler (int tr , const rtcPacketizationHandlerInit * init );
360
-
361
- // Set AV1PacketizationHandler for track
362
- RTC_C_EXPORT int rtcSetAV1PacketizationHandler (int tr , const rtcPacketizationHandlerInit * init );
363
-
364
- // Set OpusPacketizationHandler for track
365
- RTC_C_EXPORT int rtcSetOpusPacketizationHandler (int tr , const rtcPacketizationHandlerInit * init );
366
-
367
- // Set AACPacketizationHandler for track
368
- RTC_C_EXPORT int rtcSetAACPacketizationHandler (int tr , const rtcPacketizationHandlerInit * init );
369
-
370
- // Set RtcpReceivingSession for track
364
+ // Set a packetizer on track
365
+ RTC_C_EXPORT int rtcSetH264Packetizer (int tr , const rtcPacketizerInit * init );
366
+ RTC_C_EXPORT int rtcSetH265Packetizer (int tr , const rtcPacketizerInit * init );
367
+ RTC_C_EXPORT int rtcSetAV1Packetizer (int tr , const rtcPacketizerInit * init );
368
+ RTC_C_EXPORT int rtcSetOpusPacketizer (int tr , const rtcPacketizerInit * init );
369
+ RTC_C_EXPORT int rtcSetAACPacketizer (int tr , const rtcPacketizerInit * init );
370
+
371
+ // Deprecated, do not use
372
+ RTC_DEPRECATED static inline int
373
+ rtcSetH264PacketizationHandler (int tr , const rtcPacketizationHandlerInit * init ) {
374
+ return rtcSetH264Packetizer (tr , init );
375
+ }
376
+ RTC_DEPRECATED static inline int
377
+ rtcSetH265PacketizationHandler (int tr , const rtcPacketizationHandlerInit * init ) {
378
+ return rtcSetH265Packetizer (tr , init );
379
+ }
380
+ RTC_DEPRECATED static inline int
381
+ rtcSetAV1PacketizationHandler (int tr , const rtcPacketizationHandlerInit * init ) {
382
+ return rtcSetAV1Packetizer (tr , init );
383
+ }
384
+ RTC_DEPRECATED static inline int
385
+ rtcSetOpusPacketizationHandler (int tr , const rtcPacketizationHandlerInit * init ) {
386
+ return rtcSetOpusPacketizer (tr , init );
387
+ }
388
+ RTC_DEPRECATED static inline int
389
+ rtcSetAACPacketizationHandler (int tr , const rtcPacketizationHandlerInit * init ) {
390
+ return rtcSetAACPacketizer (tr , init );
391
+ }
392
+
393
+ // Chain RtcpReceivingSession on track
371
394
RTC_C_EXPORT int rtcChainRtcpReceivingSession (int tr );
372
395
373
- // Chain RtcpSrReporter to handler chain for given track
396
+ // Chain RtcpSrReporter on track
374
397
RTC_C_EXPORT int rtcChainRtcpSrReporter (int tr );
375
398
376
- // Chain RtcpNackResponder to handler chain for given track
399
+ // Chain RtcpNackResponder on track
377
400
RTC_C_EXPORT int rtcChainRtcpNackResponder (int tr , unsigned int maxStoredPacketsCount );
378
401
379
- // Chain PliHandler to handler chain for given track
402
+ // Chain PliHandler on track
380
403
RTC_C_EXPORT int rtcChainPliHandler (int tr , rtcPliHandlerCallbackFunc cb );
381
404
382
405
// Transform seconds to timestamp using track's clock rate, result is written to timestamp
0 commit comments