Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
9ff2841b
Commit
9ff2841b
authored
Jan 07, 2015
by
Guillaume BIENKOWSKI
Browse files
Use debug trace instead of message
parent
3a62072c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
coreapi/misc.c
coreapi/misc.c
+1
-1
No files found.
coreapi/misc.c
View file @
9ff2841b
...
@@ -177,7 +177,7 @@ static int lookup_vbr_typical_bitrate(int maxbw, int clock_rate){
...
@@ -177,7 +177,7 @@ static int lookup_vbr_typical_bitrate(int maxbw, int clock_rate){
static
int
get_audio_payload_bandwidth
(
LinphoneCore
*
lc
,
const
PayloadType
*
pt
,
int
maxbw
){
static
int
get_audio_payload_bandwidth
(
LinphoneCore
*
lc
,
const
PayloadType
*
pt
,
int
maxbw
){
if
(
linphone_core_payload_type_is_vbr
(
lc
,
pt
)){
if
(
linphone_core_payload_type_is_vbr
(
lc
,
pt
)){
if
(
pt
->
flags
&
PAYLOAD_TYPE_BITRATE_OVERRIDE
){
if
(
pt
->
flags
&
PAYLOAD_TYPE_BITRATE_OVERRIDE
){
ms_
message
(
"PayloadType %s/%i has bitrate override"
,
pt
->
mime_type
,
pt
->
clock_rate
);
ms_
debug
(
"PayloadType %s/%i has bitrate override"
,
pt
->
mime_type
,
pt
->
clock_rate
);
return
pt
->
normal_bitrate
/
1000
;
return
pt
->
normal_bitrate
/
1000
;
}
}
return
lookup_vbr_typical_bitrate
(
maxbw
,
pt
->
clock_rate
);
return
lookup_vbr_typical_bitrate
(
maxbw
,
pt
->
clock_rate
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment