Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(597)

Side by Side Diff: talk/media/base/codec.cc

Issue 1238083005: [NOT FOR REVIEW] Convert channel counts to size_t. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@size_t
Patch Set: Checkpoint Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « talk/media/base/codec.h ('k') | talk/media/base/fakemediaengine.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * libjingle 2 * libjingle
3 * Copyright 2004 Google Inc. 3 * Copyright 2004 Google Inc.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met: 6 * modification, are permitted provided that the following conditions are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright notice, 8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer. 9 * this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright notice, 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 } 160 }
161 161
162 void Codec::IntersectFeedbackParams(const Codec& other) { 162 void Codec::IntersectFeedbackParams(const Codec& other) {
163 feedback_params.Intersect(other.feedback_params); 163 feedback_params.Intersect(other.feedback_params);
164 } 164 }
165 165
166 AudioCodec::AudioCodec(int pt, 166 AudioCodec::AudioCodec(int pt,
167 const std::string& nm, 167 const std::string& nm,
168 int cr, 168 int cr,
169 int br, 169 int br,
170 int cs, 170 size_t cs,
171 int pr) 171 int pr)
172 : Codec(pt, nm, cr, pr), bitrate(br), channels(cs) { 172 : Codec(pt, nm, cr, pr), bitrate(br), channels(cs) {
173 } 173 }
174 174
175 AudioCodec::AudioCodec() : Codec(), bitrate(0), channels(0) { 175 AudioCodec::AudioCodec() : Codec(), bitrate(0), channels(0) {
176 } 176 }
177 177
178 AudioCodec::AudioCodec(const AudioCodec& c) = default; 178 AudioCodec::AudioCodec(const AudioCodec& c) = default;
179 179
180 AudioCodec& AudioCodec::operator=(const AudioCodec& c) { 180 AudioCodec& AudioCodec::operator=(const AudioCodec& c) {
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 bool HasRemb(const VideoCodec& codec) { 332 bool HasRemb(const VideoCodec& codec) {
333 return codec.HasFeedbackParam( 333 return codec.HasFeedbackParam(
334 FeedbackParam(kRtcpFbParamRemb, kParamValueEmpty)); 334 FeedbackParam(kRtcpFbParamRemb, kParamValueEmpty));
335 } 335 }
336 336
337 bool CodecNamesEq(const std::string& name1, const std::string& name2) { 337 bool CodecNamesEq(const std::string& name1, const std::string& name2) {
338 return _stricmp(name1.c_str(), name2.c_str()) == 0; 338 return _stricmp(name1.c_str(), name2.c_str()) == 0;
339 } 339 }
340 340
341 } // namespace cricket 341 } // namespace cricket
OLDNEW
« no previous file with comments | « talk/media/base/codec.h ('k') | talk/media/base/fakemediaengine.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698