This website works better with JavaScript.
Home
Explore
Help
Sign In
RuhNetConsulting
/
rtpengine
mirror of
https://github.com/sipwise/rtpengine
Watch
1
Star
1
Fork
0
Code
Issues
0
Projects
0
Releases
822
Wiki
Activity
Browse Source
MT#56861 set sensible ptime
... even for passthrough SSRC handlers Change-Id: I4ffebeceeef034ae6d0b8353ed3decfa380ae1c7
pull/1642/head
Richard Fuchs
3 years ago
parent
6dc1717980
commit
fb811bcb76
1 changed files
with
3 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-0
daemon/codec.c
+ 3
- 0
daemon/codec.c
View File
@ -2421,6 +2421,9 @@ static struct ssrc_entry *__ssrc_handler_new(void *p) {
struct
codec_handler
*
h
=
p
;
struct
codec_ssrc_handler
*
ch
=
obj_alloc0
(
"
codec_ssrc_handler
"
,
sizeof
(
*
ch
)
,
__free_ssrc_handler
)
;
ch
-
>
handler
=
h
;
ch
-
>
ptime
=
h
-
>
source_pt
.
ptime
;
if
(
!
ch
-
>
ptime
)
ch
-
>
ptime
=
20
;
return
&
ch
-
>
h
;
}
Write
Preview
Loading…
Cancel
Save