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

* #9979: removed unused methods from audicodec

parent e9f88993
No related branches found
No related tags found
No related merge requests found
......@@ -67,11 +67,6 @@ std::string AudioCodec::getMimeSubtype() const
return codecName_;
}
const ost::PayloadFormat& AudioCodec::getPayloadFormat()
{
return *payloadFormat_;
}
uint8 AudioCodec::getPayloadType() const
{
return payload_;
......
......@@ -65,23 +65,6 @@ class AudioCodec : public Codec {
*/
std::string getMimeSubtype() const;
/**
* @Override
*/
const ost::PayloadFormat& getPayloadFormat();
/**
* @Override
*/
void setParameter(const std::string& /*name*/, const std::string& /*value*/) {};
/**
* @Override
*/
std::string getParameter(const std::string& /*name*/) const {
return "";
};
/**
* Decode an input buffer and fill the output buffer with the decoded data
* @param buffer_size : the size of the input buffer
......
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