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

* #8968: removed unused Codec::getMimeType method

parent 866791f7
No related branches found
No related tags found
No related merge requests found
......@@ -62,11 +62,6 @@ void AudioCodec::init(uint8 payloadType, uint32 clockRate)
hasDynamicPayload_ = ((payload_ >= 96 and payload_ <= 127) or payload_ == 9);
}
std::string AudioCodec::getMimeType() const
{
return "audio";
}
std::string AudioCodec::getMimeSubtype() const
{
return codecName_;
......
......@@ -60,11 +60,6 @@ class AudioCodec : public Codec {
virtual ~AudioCodec();
/**
* @Override
*/
std::string getMimeType() const;
/**
* @Override
*/
......
......@@ -39,11 +39,6 @@ namespace sfl {
class Codec {
public:
virtual ~Codec() {}
/**
* @return The mimesubtype for this codec. Eg. : "video"
*/
virtual std::string getMimeType() const = 0;
/**
* @return The mimesubtype for this codec. Eg. : "theora"
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment