Fix an unintended warning message

The warning message was included accidentally for audio encryption
during rebase.

Change-Id: I105f2f01cb9016fc6c57494708ba6d9cbb2ff53c
This commit is contained in:
Kongqun Yang 2016-04-21 11:17:54 -07:00 committed by KongQun Yang
parent f3ed07a64e
commit 77fc3f6988
1 changed files with 4 additions and 2 deletions

View File

@ -93,8 +93,10 @@ EncryptingFragmenter::EncryptingFragmenter(
header_parser_.reset(new H265VideoSliceHeaderParser); header_parser_.reset(new H265VideoSliceHeaderParser);
break; break;
default: default:
LOG(WARNING) << "Unknown video codec '" << video_codec_ if (nalu_length_size_ > 0) {
<< "', whole subsamples will be encrypted."; LOG(WARNING) << "Unknown video codec '" << video_codec_
<< "', whole subsamples will be encrypted.";
}
} }
} }