Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
savoirfairelinux
jami-daemon
Commits
3c4bb197
Commit
3c4bb197
authored
Aug 31, 2007
by
Alexandre Bourget
Browse files
Use one name only in the name of the G711 codecs.
parent
6ce50470
Changes
2
Show whitespace changes
Inline
Side-by-side
src/audio/alaw.cpp
View file @
3c4bb197
...
@@ -23,9 +23,8 @@
...
@@ -23,9 +23,8 @@
// 8 PCMA A 8000 1 [RFC3551]
// 8 PCMA A 8000 1 [RFC3551]
Alaw
::
Alaw
(
int
payload
)
Alaw
::
Alaw
(
int
payload
)
:
AudioCodec
(
payload
,
"
PCMA
"
)
:
AudioCodec
(
payload
,
"
G711a
"
)
{
{
_officialName
=
"G711a"
;
_clockRate
=
8000
;
_clockRate
=
8000
;
_channel
=
1
;
_channel
=
1
;
}
}
...
...
src/audio/ulaw.cpp
View file @
3c4bb197
...
@@ -23,9 +23,8 @@
...
@@ -23,9 +23,8 @@
// 0 PCMU A 8000 1 [RFC3551]
// 0 PCMU A 8000 1 [RFC3551]
Ulaw
::
Ulaw
(
int
payload
)
Ulaw
::
Ulaw
(
int
payload
)
:
AudioCodec
(
payload
,
"
PCMU
"
)
:
AudioCodec
(
payload
,
"
G711u
"
)
{
{
_officialName
=
"G711u"
;
_clockRate
=
8000
;
_clockRate
=
8000
;
_channel
=
1
;
_channel
=
1
;
}
}
...
...
Write
Preview
Supports
Markdown
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