Use VLOG(1) instead for unsupported stream type

Change-Id: I8ec3027edefa07f32bba3d3b39d0804d706d3798
This commit is contained in:
KongQun Yang 2017-06-29 14:11:45 -07:00
parent 3bad4ca700
commit 627af1558e
1 changed files with 2 additions and 2 deletions

View File

@ -318,8 +318,8 @@ void Mp2tMediaParser::RegisterPes(int pmt_pid,
sbr_in_mimetype_)); sbr_in_mimetype_));
is_audio = true; is_audio = true;
} else { } else {
LOG(WARNING) << "Ignore unsupported stream type 0x" << std::hex VLOG(1) << "Ignore unsupported stream type 0x" << std::hex << stream_type
<< stream_type << std::dec; << std::dec;
return; return;
} }