| Index: media/filters/stream_parser_factory.cc
|
| diff --git a/media/filters/stream_parser_factory.cc b/media/filters/stream_parser_factory.cc
|
| index 23218bc1959e2cfd3a229a8ad36a975dc48553e1..cbf0715daceff5e0cb722fa22f9613633d0dff85 100644
|
| --- a/media/filters/stream_parser_factory.cc
|
| +++ b/media/filters/stream_parser_factory.cc
|
| @@ -123,7 +123,7 @@ static int GetMP4AudioObjectType(const std::string& codec_id,
|
| return audio_object_type;
|
| }
|
|
|
| - MEDIA_LOG(log_cb) << "Malformed mimetype codec '" << codec_id << "'";
|
| + MEDIA_LOG(log_cb, DEBUG) << "Malformed mimetype codec '" << codec_id << "'";
|
| return -1;
|
| }
|
|
|
| @@ -135,8 +135,9 @@ bool ValidateMP4ACodecID(const std::string& codec_id, const LogCB& log_cb) {
|
| return true;
|
| }
|
|
|
| - MEDIA_LOG(log_cb) << "Unsupported audio object type " << audio_object_type
|
| - << " in codec '" << codec_id << "'";
|
| + MEDIA_LOG(log_cb, DEBUG) << "Unsupported audio object type "
|
| + << audio_object_type
|
| + << " in codec '" << codec_id << "'";
|
| return false;
|
| }
|
|
|
| @@ -337,8 +338,8 @@ static bool CheckTypeAndCodecs(
|
| return true;
|
| }
|
|
|
| - MEDIA_LOG(log_cb) << "A codecs parameter must be provided for '"
|
| - << type << "'";
|
| + MEDIA_LOG(log_cb, DEBUG) << "A codecs parameter must be provided for '"
|
| + << type << "'";
|
| return false;
|
| }
|
|
|
| @@ -359,8 +360,8 @@ static bool CheckTypeAndCodecs(
|
| }
|
|
|
| if (!found_codec) {
|
| - MEDIA_LOG(log_cb) << "Codec '" << codec_id
|
| - << "' is not supported for '" << type << "'";
|
| + MEDIA_LOG(log_cb, DEBUG) << "Codec '" << codec_id
|
| + << "' is not supported for '" << type << "'";
|
| return false;
|
| }
|
| }
|
|
|