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
TT#78307 clean up debug/log messages
Change-Id: I8e10be7f297480c01a213c89f06ee93a2215767f
changes/46/38946/1
Richard Fuchs
6 years ago
parent
1d514a063c
commit
cc7a9a5de8
3 changed files
with
2 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
daemon/call.c
+0
-1
daemon/codec.c
+1
-1
daemon/jitter_buffer.c
+ 1
- 1
daemon/call.c
View File
@ -2440,7 +2440,7 @@ static void __call_free(void *p) {
struct
packet_stream
*
ps
;
struct
endpoint_map
*
em
;
__C_DBG
(
"
freeing call struct
"
)
;
ilog
(
LOG_DEBUG
,
"
freeing
main
call struct
"
)
;
obj_put
(
c
-
>
dtls_cert
)
;
+ 0
- 1
daemon/codec.c
View File
@ -1696,7 +1696,6 @@ static int __encoder_flush(encoder_t *enc, void *u1, void *u2) {
}
static
void
__free_ssrc_handler
(
void
*
chp
)
{
struct
codec_ssrc_handler
*
ch
=
chp
;
ilog
(
LOG_DEBUG
,
"
__free_ssrc_handler
"
)
;
if
(
ch
-
>
decoder
)
decoder_close
(
ch
-
>
decoder
)
;
if
(
ch
-
>
encoder
)
{
+ 1
- 1
daemon/jitter_buffer.c
View File
@ -17,7 +17,7 @@ static struct timerthread jitter_buffer_thread;
void
jitter_buffer_init
(
void
)
{
ilog
(
LOG_
INFO
,
"
jitter_buffer_init
"
)
;
ilog
(
LOG_
DEBUG
,
"
jitter_buffer_init
"
)
;
timerthread_init
(
&
jitter_buffer_thread
,
timerthread_queue_run
)
;
}
Write
Preview
Loading…
Cancel
Save