Skip to content
Snippets Groups Projects
Commit 753e316d authored by alexandresavard's avatar alexandresavard
Browse files

AudioRecord file name format

parent 453dde29
No related branches found
No related tags found
No related merge requests found
...@@ -197,9 +197,11 @@ void AudioRecord::createFilename(){ ...@@ -197,9 +197,11 @@ void AudioRecord::createFilename(){
if (timeinfo->tm_hour < 10) // 01 02 03, not 1 2 3 if (timeinfo->tm_hour < 10) // 01 02 03, not 1 2 3
out << 0; out << 0;
out << timeinfo->tm_hour; out << timeinfo->tm_hour;
out << ':';
if (timeinfo->tm_min < 10) // 01 02 03, not 1 2 3 if (timeinfo->tm_min < 10) // 01 02 03, not 1 2 3
out << 0; out << 0;
out << timeinfo->tm_min; out << timeinfo->tm_min;
out << ':';
if (timeinfo->tm_sec < 10) // 01 02 03, not 1 2 3 if (timeinfo->tm_sec < 10) // 01 02 03, not 1 2 3
out << 0; out << 0;
out << timeinfo->tm_sec; out << timeinfo->tm_sec;
......
...@@ -737,6 +737,7 @@ SIPVoIPLink::transfer(const CallID& id, const std::string& to) ...@@ -737,6 +737,7 @@ SIPVoIPLink::transfer(const CallID& id, const std::string& to)
bool SIPVoIPLink::transferStep2() bool SIPVoIPLink::transferStep2()
{ {
_debug("SIPVoIPLink::transferStep2():When is this function called?");
_audiortp->closeRtpSession(); _audiortp->closeRtpSession();
return true; return true;
} }
...@@ -2108,7 +2109,6 @@ SIPVoIPLink::SIPCallAnswered(SIPCall *call, pjsip_rx_data *rdata) ...@@ -2108,7 +2109,6 @@ SIPVoIPLink::SIPCallAnswered(SIPCall *call, pjsip_rx_data *rdata)
void xfer_func_cb( pjsip_evsub *sub, pjsip_event *event){ void xfer_func_cb( pjsip_evsub *sub, pjsip_event *event){
PJ_UNUSED_ARG(event); PJ_UNUSED_ARG(event);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment