/* * libjingle * Copyright 2004 Google Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * 3. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "talk/media/base/codec.h" #include #include #include "talk/base/common.h" #include "talk/base/stringencode.h" #include "talk/base/stringutils.h" namespace cricket { static const int kMaxStaticPayloadId = 95; bool FeedbackParam::operator==(const FeedbackParam& other) const { return _stricmp(other.id().c_str(), id().c_str()) == 0 && _stricmp(other.param().c_str(), param().c_str()) == 0; } bool FeedbackParams::operator==(const FeedbackParams& other) const { return params_ == other.params_; } bool FeedbackParams::Has(const FeedbackParam& param) const { return std::find(params_.begin(), params_.end(), param) != params_.end(); } void FeedbackParams::Add(const FeedbackParam& param) { if (param.id().empty()) { return; } if (Has(param)) { // Param already in |this|. return; } params_.push_back(param); ASSERT(!HasDuplicateEntries()); } void FeedbackParams::Intersect(const FeedbackParams& from) { std::vector::iterator iter_to = params_.begin(); while (iter_to != params_.end()) { if (!from.Has(*iter_to)) { iter_to = params_.erase(iter_to); } else { ++iter_to; } } } bool FeedbackParams::HasDuplicateEntries() const { for (std::vector::const_iterator iter = params_.begin(); iter != params_.end(); ++iter) { for (std::vector::const_iterator found = iter + 1; found != params_.end(); ++found) { if (*found == *iter) { return true; } } } return false; } bool Codec::Matches(const Codec& codec) const { // Match the codec id/name based on the typical static/dynamic name rules. // Matching is case-insensitive. return (codec.id <= kMaxStaticPayloadId) ? (id == codec.id) : (_stricmp(name.c_str(), codec.name.c_str()) == 0); } bool Codec::GetParam(const std::string& name, std::string* out) const { CodecParameterMap::const_iterator iter = params.find(name); if (iter == params.end()) return false; *out = iter->second; return true; } bool Codec::GetParam(const std::string& name, int* out) const { CodecParameterMap::const_iterator iter = params.find(name); if (iter == params.end()) return false; return talk_base::FromString(iter->second, out); } void Codec::SetParam(const std::string& name, const std::string& value) { params[name] = value; } void Codec::SetParam(const std::string& name, int value) { params[name] = talk_base::ToString(value); } void Codec::AddFeedbackParam(const FeedbackParam& param) { feedback_params.Add(param); } bool Codec::HasFeedbackParam(const FeedbackParam& param) const { return feedback_params.Has(param); } void Codec::IntersectFeedbackParams(const Codec& other) { feedback_params.Intersect(other.feedback_params); } bool AudioCodec::Matches(const AudioCodec& codec) const { // If a nonzero clockrate is specified, it must match the actual clockrate. // If a nonzero bitrate is specified, it must match the actual bitrate, // unless the codec is VBR (0), where we just force the supplied value. // The number of channels must match exactly, with the exception // that channels=0 is treated synonymously as channels=1, per RFC // 4566 section 6: " [The channels] parameter is OPTIONAL and may be // omitted if the number of channels is one." // Preference is ignored. // TODO(juberti): Treat a zero clockrate as 8000Hz, the RTP default clockrate. return Codec::Matches(codec) && ((codec.clockrate == 0 /*&& clockrate == 8000*/) || clockrate == codec.clockrate) && (codec.bitrate == 0 || bitrate <= 0 || bitrate == codec.bitrate) && ((codec.channels < 2 && channels < 2) || channels == codec.channels); } std::string AudioCodec::ToString() const { std::ostringstream os; os << "AudioCodec[" << id << ":" << name << ":" << clockrate << ":" << bitrate << ":" << channels << ":" << preference << "]"; return os.str(); } std::string VideoCodec::ToString() const { std::ostringstream os; os << "VideoCodec[" << id << ":" << name << ":" << width << ":" << height << ":" << framerate << ":" << preference << "]"; return os.str(); } std::string DataCodec::ToString() const { std::ostringstream os; os << "DataCodec[" << id << ":" << name << "]"; return os.str(); } } // namespace cricket