Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
8bd6a189
Commit
8bd6a189
authored
15 years ago
by
Alexandre Savard
Browse files
Options
Downloads
Patches
Plain Diff
[#2165] Add recordabe interface
parent
8ade6da0
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
sflphone-common/src/audio/recordable.cpp
+45
-0
45 additions, 0 deletions
sflphone-common/src/audio/recordable.cpp
sflphone-common/src/audio/recordable.h
+61
-0
61 additions, 0 deletions
sflphone-common/src/audio/recordable.h
with
106 additions
and
0 deletions
sflphone-common/src/audio/recordable.cpp
0 → 100644
+
45
−
0
View file @
8bd6a189
/*
* Copyright (C) 2004-2008 Savoir-Faire Linux inc.
* Author: Alexandre Savard <alexandre.savard@savoirfairelinux.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include
"recordable.h"
#include
"manager.h"
Recordable
::
Recordable
()
{
FILE_TYPE
fileType
=
FILE_WAV
;
SOUND_FORMAT
soundFormat
=
INT16
;
recAudio
.
setRecordingOption
(
fileType
,
soundFormat
,
44100
,
Manager
::
instance
().
getConfigString
(
AUDIO
,
RECORD_PATH
));
}
Recordable
::~
Recordable
()
{
if
(
recAudio
.
isOpenFile
())
{
recAudio
.
closeFile
();
}
}
void
Recordable
::
initRecFileName
()
{
_debug
(
"XXXXXXXXXXXXXXXXX getRecFileId() %s XXXXXXXXXXXXXXXXXXX
\n
"
,
getRecFileId
().
c_str
());
recAudio
.
initFileName
(
getRecFileId
());
}
This diff is collapsed.
Click to expand it.
sflphone-common/src/audio/recordable.h
0 → 100644
+
61
−
0
View file @
8bd6a189
/*
* Copyright (C) 2004-2008 Savoir-Faire Linux inc.
* Author: Alexandre Savard <alexandre.savard@savoirfairelinux.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef RECORDABLE_H
#define RECORDABLE_H
#include
"../plug-in/audiorecorder/audiorecord.h"
class
Recordable
{
public:
Recordable
();
~
Recordable
();
bool
isRecording
(){
return
recAudio
.
isRecording
();
}
bool
setRecording
(){
return
recAudio
.
setRecording
();
}
void
stopRecording
(){
recAudio
.
stopRecording
();
}
void
initRecFileName
();
virtual
std
::
string
getRecFileId
()
=
0
;
// virtual std::string getFileName() = 0;
// std::string getFileName() { return _filename; }
/**
* An instance of audio recorder
*/
AudioRecord
recAudio
;
private
:
/** File name for his call : time YY-MM-DD */
// std::string _filename;
};
#endif
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment