Code cleanup: no "if return else return" (#611)
- Unify code format - Low nest level
This commit is contained in:
parent
3c26dfbd53
commit
2c51dcc601
|
@ -184,14 +184,15 @@ base::Optional<MediaPlaylist::EncryptionMethod> StringToEncryptionMethod(
|
||||||
const std::string& method) {
|
const std::string& method) {
|
||||||
if (method == "cenc") {
|
if (method == "cenc") {
|
||||||
return MediaPlaylist::EncryptionMethod::kSampleAesCenc;
|
return MediaPlaylist::EncryptionMethod::kSampleAesCenc;
|
||||||
} else if (method == "cbcs") {
|
}
|
||||||
|
if (method == "cbcs") {
|
||||||
return MediaPlaylist::EncryptionMethod::kSampleAes;
|
return MediaPlaylist::EncryptionMethod::kSampleAes;
|
||||||
} else if (method == "cbca") {
|
}
|
||||||
|
if (method == "cbca") {
|
||||||
// cbca is a place holder for sample aes.
|
// cbca is a place holder for sample aes.
|
||||||
return MediaPlaylist::EncryptionMethod::kSampleAes;
|
return MediaPlaylist::EncryptionMethod::kSampleAes;
|
||||||
} else {
|
|
||||||
return base::nullopt;
|
|
||||||
}
|
}
|
||||||
|
return base::nullopt;
|
||||||
}
|
}
|
||||||
|
|
||||||
void NotifyEncryptionToMediaPlaylist(
|
void NotifyEncryptionToMediaPlaylist(
|
||||||
|
@ -459,7 +460,8 @@ bool SimpleHlsNotifier::NotifyEncryptionUpdate(
|
||||||
NotifyEncryptionToMediaPlaylist(encryption_method, key_uri, empty_key_id,
|
NotifyEncryptionToMediaPlaylist(encryption_method, key_uri, empty_key_id,
|
||||||
iv, "identity", "", media_playlist.get());
|
iv, "identity", "", media_playlist.get());
|
||||||
return true;
|
return true;
|
||||||
} else if (IsFairPlaySystemId(system_id)) {
|
}
|
||||||
|
if (IsFairPlaySystemId(system_id)) {
|
||||||
std::string key_uri = hls_params().key_uri;
|
std::string key_uri = hls_params().key_uri;
|
||||||
if (key_uri.empty()) {
|
if (key_uri.empty()) {
|
||||||
// Use key_id as the key_uri. The player needs to have custom logic to
|
// Use key_id as the key_uri. The player needs to have custom logic to
|
||||||
|
|
|
@ -210,7 +210,8 @@ Status ValidateStreamDescriptor(bool dump_stream_info,
|
||||||
|
|
||||||
if (output_format == CONTAINER_UNKNOWN) {
|
if (output_format == CONTAINER_UNKNOWN) {
|
||||||
return Status(error::INVALID_ARGUMENT, "Unsupported output format.");
|
return Status(error::INVALID_ARGUMENT, "Unsupported output format.");
|
||||||
} else if (output_format == MediaContainerName::CONTAINER_MPEG2TS) {
|
}
|
||||||
|
if (output_format == MediaContainerName::CONTAINER_MPEG2TS) {
|
||||||
if (stream.segment_template.empty()) {
|
if (stream.segment_template.empty()) {
|
||||||
return Status(
|
return Status(
|
||||||
error::INVALID_ARGUMENT,
|
error::INVALID_ARGUMENT,
|
||||||
|
@ -355,9 +356,8 @@ bool StreamDescriptorCompareFn(const StreamDescriptor& a,
|
||||||
// The MPD notifier requires that the main track comes first, so make
|
// The MPD notifier requires that the main track comes first, so make
|
||||||
// sure that happens.
|
// sure that happens.
|
||||||
return a.trick_play_factor < b.trick_play_factor;
|
return a.trick_play_factor < b.trick_play_factor;
|
||||||
} else {
|
|
||||||
return a.stream_selector < b.stream_selector;
|
|
||||||
}
|
}
|
||||||
|
return a.stream_selector < b.stream_selector;
|
||||||
}
|
}
|
||||||
|
|
||||||
return a.input < b.input;
|
return a.input < b.input;
|
||||||
|
|
Loading…
Reference in New Issue