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
2e0588e0
Commit
2e0588e0
authored
Jan 11, 2008
by
Emmanuel Milou
Browse files
small corrections
parent
ba5c45ef
Changes
4
Hide whitespace changes
Inline
Side-by-side
sflphone-gtk/src/mainwindow.c
View file @
2e0588e0
...
...
@@ -248,10 +248,11 @@ main_window_dialpad(gboolean show){
void
main_window_callinfo
(
gboolean
show
,
call_t
*
current
)
{
/*
if(show && !showInfoScreen)
{
infoScreen = create_screen();
gtk_box_pack_start
(
GTK_BOX
(
subvbox
),
infoScreen
,
FALSE
/*expand*/
,
TRUE
/*fill*/
,
0
/*padding*/
);
gtk_box_pack_start (GTK_BOX (subvbox), infoScreen, FALSE
, TRUE , 0
);
gtk_widget_show_all(infoScreen);
screen_set_call(current);
}
...
...
@@ -260,6 +261,7 @@ main_window_callinfo(gboolean show, call_t* current)
gtk_container_remove(GTK_CONTAINER (subvbox), infoScreen);
}
showInfoScreen = show;
*/
}
void
...
...
src/audio/audiolayer.cpp
View file @
2e0588e0
...
...
@@ -120,6 +120,7 @@ AudioLayer::openDevice (int indexIn, int indexOut, int sampleRate, int frameSize
//= paFramesPerBufferUnspecified;
int
nbDevice
=
getDeviceCount
();
_debug
(
"Nb of audio devices: %i
\n
"
,
nbDevice
);
if
(
nbDevice
==
0
)
{
_debug
(
"Portaudio detect no sound card."
);
return
;
...
...
src/managerimpl.cpp
View file @
2e0588e0
...
...
@@ -1154,8 +1154,8 @@ ManagerImpl::getCodecList( void )
{
std
::
vector
<
std
::
string
>
v
;
std
::
string
desc
=
getConfigString
(
AUDIO
,
"Codecs.codec1"
);
std
::
string
rate
=
clockRate
(
desc
).
strstream
();
printf
(
"%s
\n
"
,
rate
.
c_str
());
//
std::string rate=clockRate(desc).strstream();
//
printf("%s\n",rate.c_str());
v
.
push_back
(
getConfigString
(
AUDIO
,
"Codecs.codec1"
));
v
.
push_back
(
getConfigString
(
AUDIO
,
"Codecs.codec2"
));
v
.
push_back
(
getConfigString
(
AUDIO
,
"Codecs.codec3"
));
...
...
src/managerimpl.h
View file @
2e0588e0
...
...
@@ -651,4 +651,4 @@ private:
};
t
#
endif
// __MANAGER_H__
#endif // __MANAGER_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