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
6e4cf7d9
Commit
6e4cf7d9
authored
Jul 15, 2013
by
Tristan Matthews
Browse files
* #26839: preferences: fix formatting with astyle
parent
2c0fd610
Changes
1
Hide whitespace changes
Inline
Side-by-side
daemon/src/preferences.cpp
View file @
6e4cf7d9
...
...
@@ -112,11 +112,11 @@ static const char * const POPUP_SHORT_KEY = "popupWindow";
static
const
char
*
const
TOGGLE_HOLD_SHORT_KEY
=
"toggleHold"
;
static
const
char
*
const
TOGGLE_PICKUP_HANGUP_SHORT_KEY
=
"togglePickupHangup"
;
static
const
char
*
const
DFT_PULSE_LENGTH_STR
=
"250"
;
/** Default DTMF lenght */
static
const
char
*
const
DFT_PULSE_LENGTH_STR
=
"250"
;
/** Default DTMF lenght */
static
const
char
*
const
ZRTP_ZIDFILE
=
"zidFile"
;
/** The filename used for storing ZIDs */
static
const
char
*
const
ALSA_DFT_CARD
=
"0"
;
/** Default sound card index */
static
const
char
*
const
ALSA_DFT_CARD
=
"0"
;
/** Default sound card index */
static
const
char
*
const
DFT_VOL_SPKR_STR
=
"100"
;
/** Default speaker volume */
static
const
char
*
const
DFT_VOL_MICRO_STR
=
"100"
;
/** Default mic volume */
static
const
char
*
const
DFT_VOL_MICRO_STR
=
"100"
;
/** Default mic volume */
}
// end anonymous namespace
Preferences
::
Preferences
()
:
...
...
@@ -313,6 +313,7 @@ void checkSoundCard(int &card, AudioLayer::PCMType stream)
WARN
(
" Card with index %d doesn't exist or is unusable."
,
card
);
card
=
ALSA_DFT_CARD_ID
;
}
card
=
ALSA_DFT_CARD_ID
;
}
#endif
...
...
@@ -325,12 +326,14 @@ AudioLayer* AudioPreference::createAudioLayer()
#endif
#if HAVE_PULSE
if
(
audioApi_
==
PULSEAUDIO_API_STR
)
{
if
(
system
(
"pactl info > /dev/null"
)
==
0
)
return
new
PulseLayer
(
*
this
);
else
WARN
(
"pulseaudio daemon not running, falling back to ALSA"
);
}
#endif
#if HAVE_ALSA
...
...
@@ -440,6 +443,7 @@ void AudioPreference::unserialize(const Conf::YamlNode &map)
map
.
getValue
(
AUDIO_API_KEY
,
&
audioApi_
);
std
::
string
tmpRecordPath
;
map
.
getValue
(
RECORDPATH_KEY
,
&
tmpRecordPath
);
if
(
not
setRecordPath
(
tmpRecordPath
))
setRecordPath
(
fileutils
::
get_home_dir
());
...
...
@@ -449,7 +453,7 @@ void AudioPreference::unserialize(const Conf::YamlNode &map)
map
.
getValue
(
NOISE_REDUCE_KEY
,
&
noisereduce_
);
map
.
getValue
(
ECHO_CANCEL_KEY
,
&
echocancel_
);
Conf
::
MappingNode
*
alsamap
=
(
Conf
::
MappingNode
*
)
map
.
getValue
(
"alsa"
);
Conf
::
MappingNode
*
alsamap
=
(
Conf
::
MappingNode
*
)
map
.
getValue
(
"alsa"
);
if
(
alsamap
)
{
alsamap
->
getValue
(
CARDIN_KEY
,
&
alsaCardin_
);
...
...
@@ -460,13 +464,14 @@ void AudioPreference::unserialize(const Conf::YamlNode &map)
}
#if HAVE_PULSE
Conf
::
MappingNode
*
pulsemap
=
(
Conf
::
MappingNode
*
)(
map
.
getValue
(
"pulse"
));
Conf
::
MappingNode
*
pulsemap
=
(
Conf
::
MappingNode
*
)(
map
.
getValue
(
"pulse"
));
if
(
pulsemap
)
{
pulsemap
->
getValue
(
DEVICE_PLAYBACK_KEY
,
&
pulseDevicePlayback_
);
pulsemap
->
getValue
(
DEVICE_RECORD_KEY
,
&
pulseDeviceRecord_
);
pulsemap
->
getValue
(
DEVICE_RINGTONE_KEY
,
&
pulseDeviceRingtone_
);
}
#endif
}
...
...
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