Skip to content
Snippets Groups Projects
Commit df322d32 authored by Tristan Matthews's avatar Tristan Matthews
Browse files

* #8968: recordable: removed unused getRecFileId

parent 5360babd
No related branches found
No related tags found
No related merge requests found
......@@ -75,12 +75,6 @@ class Recordable {
*/
void setRecordingSmplRate(int smplRate);
/**
* Virtual method to be implemented in order to the main
* buffer to retrieve the recorded id.
*/
virtual std::string getRecFileId() const = 0;
protected:
AudioRecord recAudio_;
AudioRecorder recorder_;
......
......@@ -202,10 +202,6 @@ class Call : public Recordable {
*/
unsigned int getLocalAudioPort();
std::string getRecFileId() const {
return getDisplayName();
}
void time_stop();
std::map<std::string, std::string> createHistoryEntry() const;
virtual bool setRecording();
......
......@@ -126,10 +126,6 @@ bool Conference::setRecording()
return recordStatus;
}
std::string Conference::getRecFileId() const {
return getConfID();
}
std::string Conference::getConfID() const {
return id_;
}
......
......@@ -86,11 +86,6 @@ class Conference : public Recordable {
*/
ParticipantSet getParticipantList() const;
/**
* Get recording file ID
*/
std::string getRecFileId() const;
/**
* Start/stop recording toggle
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment