Fix an unintended warning message
The warning message was included accidentally for audio encryption during rebase. Change-Id: I105f2f01cb9016fc6c57494708ba6d9cbb2ff53c
This commit is contained in:
parent
f3ed07a64e
commit
77fc3f6988
|
@ -93,8 +93,10 @@ EncryptingFragmenter::EncryptingFragmenter(
|
|||
header_parser_.reset(new H265VideoSliceHeaderParser);
|
||||
break;
|
||||
default:
|
||||
LOG(WARNING) << "Unknown video codec '" << video_codec_
|
||||
<< "', whole subsamples will be encrypted.";
|
||||
if (nalu_length_size_ > 0) {
|
||||
LOG(WARNING) << "Unknown video codec '" << video_codec_
|
||||
<< "', whole subsamples will be encrypted.";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue