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
89d9d7e3
Commit
89d9d7e3
authored
Oct 11, 2011
by
Tristan Matthews
Browse files
* #7132: daemon: audiortp files -> lowercase
parent
4dd92898
Changes
20
Hide whitespace changes
Inline
Side-by-side
daemon/src/audio/audiortp/Makefile.am
View file @
89d9d7e3
...
...
@@ -3,20 +3,18 @@ include $(top_srcdir)/globals.mak
noinst_LTLIBRARIES
=
libaudiortp.la
libaudiortp_la_SOURCES
=
\
AudioRtpSession.cpp
\
AudioSymmetricRtpSession.cpp
\
AudioRtpRecordHandler.cpp
\
AudioRtpFactory.cpp
\
AudioZrtpSession.cpp
\
ZrtpSessionCallback.cpp
\
AudioSrtpSession.cpp
noinst_HEADERS
=
\
AudioRtpSession.h
\
AudioRtpRecordHandler.h
\
AudioRtpFactory.h
\
AudioSymmetricRtpSession.h
\
AudioZrtpSession.h
\
ZrtpSessionCallback.h
\
AudioSrtpSession.h
audio_rtp_session.cpp
\
audio_symmetric_rtp_session.cpp
\
audio_rtp_record_handler.cpp
\
audio_rtp_factory.cpp
\
audio_zrtp_session.cpp
\
zrtp_session_callback.cpp
\
audio_srtp_session.cpp
\
audio_rtp_session.h
\
audio_rtp_record_handler.h
\
audio_rtp_factory.h
\
audio_symmetric_rtp_session.h
\
audio_zrtp_session.h
\
zrtp_session_callback.h
\
audio_srtp_session.h
daemon/src/audio/audiortp/
A
udio
RtpF
actory.cpp
→
daemon/src/audio/audiortp/
a
udio
_rtp_f
actory.cpp
View file @
89d9d7e3
...
...
@@ -30,24 +30,20 @@
#include
"
A
udio
RtpF
actory.h"
#include
"
A
udio
Z
rtp
S
ession.h"
#include
"
A
udio
S
rtp
S
ession.h"
#include
"
A
udio
S
ymmetric
RtpS
ession.h"
#include
"
a
udio
_rtp_f
actory.h"
#include
"
a
udio
_z
rtp
_s
ession.h"
#include
"
a
udio
_s
rtp
_s
ession.h"
#include
"
a
udio
_s
ymmetric
_rtp_s
ession.h"
#include
"manager.h"
#include
"sip/sdp.h"
#include
"sip/sipcall.h"
#include
"sip/sipaccount.h"
#include
"sip/SdesNegotiator.h"
#include
<cassert>
namespace
sfl
{
AudioRtpFactory
::
AudioRtpFactory
(
SIPCall
*
ca
)
:
_rtpSession
(
NULL
),
remoteContext
(
NULL
),
localContext
(
NULL
),
ca_
(
ca
)
{
}
{}
AudioRtpFactory
::~
AudioRtpFactory
()
{
...
...
daemon/src/audio/audiortp/
A
udio
RtpF
actory.h
→
daemon/src/audio/audiortp/
a
udio
_rtp_f
actory.h
View file @
89d9d7e3
...
...
@@ -28,21 +28,18 @@
* as that of the covered work.
*/
#ifndef __
SFL_
AUDIO_RTP_FACTORY_H__
#define __
SFL_
AUDIO_RTP_FACTORY_H__
#ifndef __AUDIO_RTP_FACTORY_H__
#define __AUDIO_RTP_FACTORY_H__
#include
<stdexcept>
#include
<cc++/thread.h>
#include
"account.h"
// for typedef of std::string (std::string)
#include
<ccrtp/CryptoContext.h>
#include
"
A
udio
RtpS
ession.h"
#include
"
a
udio
_rtp_s
ession.h"
#include
"sip/SdesNegotiator.h"
class
SdesNegotiator
;
class
SIPCall
;
class
Account
;
class
SIPAccount
;
namespace
sfl
{
...
...
daemon/src/audio/audiortp/
A
udio
RtpR
ecord
H
andler.cpp
→
daemon/src/audio/audiortp/
a
udio
_rtp_r
ecord
_h
andler.cpp
View file @
89d9d7e3
...
...
@@ -27,15 +27,13 @@
* as that of the covered work.
*/
#include
"
A
udio
RtpR
ecord
H
andler.h"
#include
"
a
udio
_rtp_r
ecord
_h
andler.h"
#include
<fstream>
#include
"sip/sipcall.h"
#include
"audio/audiolayer.h"
#include
"manager.h"
// #define DUMP_PROCESS_DATA_ENCODE
namespace
sfl
{
static
const
SFLDataFormat
initFadeinFactor
=
32000
;
...
...
daemon/src/audio/audiortp/
A
udio
RtpR
ecord
H
andler.h
→
daemon/src/audio/audiortp/
a
udio
_rtp_r
ecord
_h
andler.h
View file @
89d9d7e3
...
...
@@ -27,8 +27,8 @@
* as that of the covered work.
*/
#ifndef AUDIORTPRECORDHANDLER_H_
#define AUDIORTPRECORDHANDLER_H_
#ifndef
__
AUDIO
_
RTP
_
RECORD
_
HANDLER_H_
_
#define
__
AUDIO
_
RTP
_
RECORD
_
HANDLER_H_
_
#include
<cstddef>
using
std
::
ptrdiff_t
;
...
...
@@ -43,7 +43,6 @@ class SIPCall;
#include
"audio/speexechocancel.h"
#include
"audio/echosuppress.h"
#include
"audio/gaincontrol.h"
#include
"managerimpl.h"
namespace
sfl
{
...
...
@@ -183,4 +182,4 @@ class AudioRtpRecordHandler {
}
#endif
/
*
AUDIORTPRECORD_H
_ */
#endif /
/ __
AUDIO
_
RTP
_
RECORD_H
ANDLER_H__
daemon/src/audio/audiortp/
A
udio
RtpS
ession.cpp
→
daemon/src/audio/audiortp/
a
udio
_rtp_s
ession.cpp
View file @
89d9d7e3
...
...
@@ -32,8 +32,8 @@
* as that of the covered work.
*/
#include
"
A
udio
RtpS
ession.h"
#include
"
A
udio
S
ymmetric
RtpS
ession.h"
#include
"
a
udio
_rtp_s
ession.h"
#include
"
a
udio
_s
ymmetric
_rtp_s
ession.h"
#include
"sip/sdp.h"
#include
"audio/audiolayer.h"
...
...
daemon/src/audio/audiortp/
A
udio
RtpS
ession.h
→
daemon/src/audio/audiortp/
a
udio
_rtp_s
ession.h
View file @
89d9d7e3
...
...
@@ -34,7 +34,7 @@
#ifndef __SFL_AUDIO_RTP_SESSION_H__
#define __SFL_AUDIO_RTP_SESSION_H__
#include
"
A
udio
RtpR
ecord
H
andler.h"
#include
"
a
udio
_rtp_r
ecord
_h
andler.h"
#include
<audio/codecs/audiocodec.h>
#include
<ccrtp/rtp.h>
#include
<ccrtp/formats.h>
...
...
daemon/src/audio/audiortp/
A
udio
S
rtp
S
ession.cpp
→
daemon/src/audio/audiortp/
a
udio
_s
rtp
_s
ession.cpp
View file @
89d9d7e3
...
...
@@ -27,7 +27,7 @@
* shall include the source code for the parts of OpenSSL used as well
* as that of the covered work.
*/
#include
"
A
udio
S
rtp
S
ession.h"
#include
"
a
udio
_s
rtp
_s
ession.h"
#include
"sip/sipcall.h"
...
...
daemon/src/audio/audiortp/
A
udio
S
rtp
S
ession.h
→
daemon/src/audio/audiortp/
a
udio
_s
rtp
_s
ession.h
View file @
89d9d7e3
...
...
@@ -27,11 +27,11 @@
* shall include the source code for the parts of OpenSSL used as well
* as that of the covered work.
*/
#ifndef __
SFL_
AUDIO_SRTP_SESSION_H__
#define __
SFL_
AUDIO_SRTP_SESSION_H__
#ifndef __AUDIO_SRTP_SESSION_H__
#define __AUDIO_SRTP_SESSION_H__
#include
"
A
udio
RtpS
ession.h"
#include
"
A
udio
S
ymmetric
RtpS
ession.h"
#include
"
a
udio
_rtp_s
ession.h"
#include
"
a
udio
_s
ymmetric
_rtp_s
ession.h"
#include
"sip/SdesNegotiator.h"
#include
<ccrtp/CryptoContext.h>
...
...
@@ -183,7 +183,6 @@ class AudioSrtpSession : public AudioSymmetricRtpSession {
/** Used to make sure remote crypto context not initialized wice. */
bool
_remoteOfferIsSet
;
};
}
#endif // __AUDIO_SRTP_SESSION_H__
daemon/src/audio/audiortp/
A
udio
S
ymmetric
RtpS
ession.cpp
→
daemon/src/audio/audiortp/
a
udio
_s
ymmetric
_rtp_s
ession.cpp
View file @
89d9d7e3
...
...
@@ -32,13 +32,12 @@
* as that of the covered work.
*/
#include
"AudioRtpSession.h"
#include
"AudioSymmetricRtpSession.h"
#include
"AudioRtpRecordHandler.h"
#include
"audio_rtp_session.h"
#include
"audio_symmetric_rtp_session.h"
#include
"audio_rtp_record_handler.h"
#include
"sip/sdp.h"
#include
"audio/audiolayer.h"
namespace
sfl
{
AudioSymmetricRtpSession
::
AudioSymmetricRtpSession
(
SIPCall
*
sipcall
)
:
...
...
daemon/src/audio/audiortp/
A
udio
S
ymmetric
RtpS
ession.h
→
daemon/src/audio/audiortp/
a
udio
_s
ymmetric
_rtp_s
ession.h
View file @
89d9d7e3
...
...
@@ -31,18 +31,19 @@
* shall include the source code for the parts of OpenSSL used as well
* as that of the covered work.
*/
#ifndef __
SFL_
AUDIO_SYMMETRIC_RTP_SESSION_H__
#define __
SFL_
AUDIO_SYMMETRIC_RTP_SESSION_H__
#ifndef __AUDIO_SYMMETRIC_RTP_SESSION_H__
#define __AUDIO_SYMMETRIC_RTP_SESSION_H__
#include
<iostream>
#include
<exception>
#include
<list>
#include
<cassert>
#include
<cstddef>
#include
"global.h"
#include
"
A
udio
RtpS
ession.h"
#include
"
A
udio
RtpR
ecord
H
andler.h"
#include
"
a
udio
_rtp_s
ession.h"
#include
"
a
udio
_rtp_r
ecord
_h
andler.h"
#include
"sip/sipcall.h"
#include
"audio/codecs/audiocodec.h"
...
...
daemon/src/audio/audiortp/
A
udio
Z
rtp
S
ession.cpp
→
daemon/src/audio/audiortp/
a
udio
_z
rtp
_s
ession.cpp
View file @
89d9d7e3
...
...
@@ -29,8 +29,8 @@
*/
#include
"config.h"
#include
"
A
udio
Z
rtp
S
ession.h"
#include
"
Z
rtp
S
ession
C
allback.h"
#include
"
a
udio
_z
rtp
_s
ession.h"
#include
"
z
rtp
_s
ession
_c
allback.h"
#include
"sip/sipcall.h"
#include
"sip/sdp.h"
...
...
daemon/src/audio/audiortp/
A
udio
Z
rtp
S
ession.h
→
daemon/src/audio/audiortp/
a
udio
_z
rtp
_s
ession.h
View file @
89d9d7e3
...
...
@@ -27,8 +27,8 @@
* shall include the source code for the parts of OpenSSL used as well
* as that of the covered work.
*/
#ifndef __
SFL_
AUDIO_ZRTP_SESSION_H__
#define __
SFL_
AUDIO_ZRTP_SESSION_H__
#ifndef __AUDIO_ZRTP_SESSION_H__
#define __AUDIO_ZRTP_SESSION_H__
#include
<cstddef>
#include
<stdexcept>
...
...
@@ -39,7 +39,7 @@ using std::ptrdiff_t;
#include
<libzrtpcpp/ZrtpQueue.h>
#include
<libzrtpcpp/ZrtpUserCallback.h>
#include
"
A
udio
RtpS
ession.h"
#include
"
a
udio
_rtp_s
ession.h"
#include
<cc++/numbers.h>
// OST::Time
class
SIPCall
;
...
...
daemon/src/audio/audiortp/
Z
rtp
S
ession
C
allback.cpp
→
daemon/src/audio/audiortp/
z
rtp
_s
ession
_c
allback.cpp
View file @
89d9d7e3
...
...
@@ -27,7 +27,7 @@
* shall include the source code for the parts of OpenSSL used as well
* as that of the covered work.
*/
#include
"
Z
rtp
S
ession
C
allback.h"
#include
"
z
rtp
_s
ession
_c
allback.h"
#include
"global.h"
#include
"sip/sipcall.h"
...
...
daemon/src/audio/audiortp/
Z
rtp
S
ession
C
allback.h
→
daemon/src/audio/audiortp/
z
rtp
_s
ession
_c
allback.h
View file @
89d9d7e3
...
...
@@ -28,8 +28,8 @@
* as that of the covered work.
*/
#ifndef __
SFL_
ZRTP_CALLBACK_H__
#define __
SFL_
ZRTP_CALLBACK_H__
#ifndef __ZRTP
_SESSION
_CALLBACK_H__
#define __ZRTP
_SESSION
_CALLBACK_H__
#include
<cstddef>
using
std
::
ptrdiff_t
;
...
...
@@ -66,4 +66,4 @@ class ZrtpSessionCallback: public ZrtpUserCallback {
static
bool
_mapInitialized
;
};
}
#endif
#endif
// __ZRTP_SESSION_CALLBACK_H__
daemon/src/dbus/callmanager.cpp
View file @
89d9d7e3
...
...
@@ -35,8 +35,8 @@
#include
"sip/sipcall.h"
#include
"sip/sipvoiplink.h"
#include
"audio/audiortp/
A
udio
RtpF
actory.h"
#include
"audio/audiortp/
A
udio
Z
rtp
S
ession.h"
#include
"audio/audiortp/
a
udio
_rtp_f
actory.h"
#include
"audio/audiortp/
a
udio
_z
rtp
_s
ession.h"
#include
"manager.h"
...
...
daemon/src/sip/sipcall.cpp
View file @
89d9d7e3
...
...
@@ -32,8 +32,7 @@
*/
#include
"sipcall.h"
#include
"logger.h"
// for _debug
#include
"audio/audiortp/AudioRtpFactory.h"
#include
"audio/audiortp/audio_rtp_factory.h"
#include
"sdp.h"
SIPCall
::
SIPCall
(
const
std
::
string
&
id
,
Call
::
CallType
type
,
pj_caching_pool
*
caching_pool
)
:
Call
(
id
,
type
)
...
...
daemon/src/sip/sipcall.h
View file @
89d9d7e3
...
...
@@ -33,8 +33,7 @@
#define SIPCALL_H
#include
"call.h"
#include
<cassert>
#include
"audio/audiortp/AudioRtpFactory.h"
#include
"audio/audiortp/audio_rtp_factory.h"
class
pjsip_evsub
;
class
pj_caching_pool
;
...
...
daemon/test/rtptest.cpp
View file @
89d9d7e3
...
...
@@ -42,18 +42,16 @@
#include
<time.h>
#include
"rtptest.h"
#include
"audio/audiortp/
A
udio
S
ymmetric
RtpS
ession.h"
#include
"audio/audiortp/
a
udio
_s
ymmetric
_rtp_s
ession.h"
#include
<unistd.h>
void
RtpTest
::
setUp
()
{
}
bool
RtpTest
::
pjsipInit
()
{
return
true
;
}
...
...
daemon/test/rtptest.h
View file @
89d9d7e3
...
...
@@ -51,7 +51,7 @@
#include
<pjnath/stun_config.h>
// Application import
#include
"audio/audiortp/
A
udio
RtpF
actory.h"
#include
"audio/audiortp/
a
udio
_rtp_f
actory.h"
#include
"manager.h"
#include
"call.h"
#include
"sip/sipcall.h"
...
...
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