Home | History | Annotate | Download | only in base

Lines Matching refs:bitrate

169                        int bitrate,
173 bitrate(bitrate),
177 AudioCodec::AudioCodec() : Codec(), bitrate(0), channels(0) {
184 bitrate = c.bitrate;
190 return bitrate == c.bitrate && channels == c.channels && Codec::operator==(c);
195 // If a nonzero bitrate is specified, it must match the actual bitrate,
206 (codec.bitrate == 0 || bitrate <= 0 || bitrate == codec.bitrate) &&
212 os << "AudioCodec[" << id << ":" << name << ":" << clockrate << ":" << bitrate
304 LOG(LS_ERROR) << "Codec with max < min bitrate: " << ToString();