2017-12-19 20:02:28 +00:00
|
|
|
// Copyright 2015 Google Inc. All rights reserved.
|
2014-05-19 21:30:58 +00:00
|
|
|
//
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file or at
|
|
|
|
// https://developers.google.com/open-source/licenses/bsd
|
|
|
|
|
2014-10-01 22:10:21 +00:00
|
|
|
#include "packager/mpd/base/simple_mpd_notifier.h"
|
2014-05-19 21:30:58 +00:00
|
|
|
|
2014-10-01 22:10:21 +00:00
|
|
|
#include "packager/base/logging.h"
|
2016-08-30 23:01:19 +00:00
|
|
|
#include "packager/base/stl_util.h"
|
2017-12-13 01:26:37 +00:00
|
|
|
#include "packager/mpd/base/adaptation_set.h"
|
2014-10-01 22:10:21 +00:00
|
|
|
#include "packager/mpd/base/mpd_builder.h"
|
2015-07-22 06:57:21 +00:00
|
|
|
#include "packager/mpd/base/mpd_notifier_util.h"
|
2014-10-01 22:10:21 +00:00
|
|
|
#include "packager/mpd/base/mpd_utils.h"
|
2017-12-14 01:00:11 +00:00
|
|
|
#include "packager/mpd/base/period.h"
|
2017-12-13 01:26:37 +00:00
|
|
|
#include "packager/mpd/base/representation.h"
|
2014-05-19 21:30:58 +00:00
|
|
|
|
2016-05-20 21:19:33 +00:00
|
|
|
namespace shaka {
|
2014-05-19 21:30:58 +00:00
|
|
|
|
2017-07-27 18:49:50 +00:00
|
|
|
SimpleMpdNotifier::SimpleMpdNotifier(const MpdOptions& mpd_options)
|
2016-12-21 23:28:56 +00:00
|
|
|
: MpdNotifier(mpd_options),
|
2017-07-27 18:49:50 +00:00
|
|
|
output_path_(mpd_options.mpd_params.mpd_output),
|
2017-12-19 20:02:28 +00:00
|
|
|
mpd_builder_(new MpdBuilder(mpd_options)),
|
|
|
|
content_protection_in_adaptation_set_(
|
|
|
|
mpd_options.mpd_params.generate_dash_if_iop_compliant_mpd) {
|
2017-07-27 18:49:50 +00:00
|
|
|
for (const std::string& base_url : mpd_options.mpd_params.base_urls)
|
|
|
|
mpd_builder_->AddBaseUrl(base_url);
|
2014-05-19 21:30:58 +00:00
|
|
|
}
|
|
|
|
|
2017-12-19 20:02:28 +00:00
|
|
|
SimpleMpdNotifier::~SimpleMpdNotifier() {}
|
2014-05-19 21:30:58 +00:00
|
|
|
|
|
|
|
bool SimpleMpdNotifier::Init() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SimpleMpdNotifier::NotifyNewContainer(const MediaInfo& media_info,
|
2014-09-30 21:52:21 +00:00
|
|
|
uint32_t* container_id) {
|
2014-05-19 21:30:58 +00:00
|
|
|
DCHECK(container_id);
|
|
|
|
|
|
|
|
ContentType content_type = GetContentType(media_info);
|
2015-07-22 06:57:21 +00:00
|
|
|
if (content_type == kContentTypeUnknown)
|
2014-05-19 21:30:58 +00:00
|
|
|
return false;
|
|
|
|
|
2014-12-16 01:32:19 +00:00
|
|
|
MediaInfo adjusted_media_info(media_info);
|
|
|
|
MpdBuilder::MakePathsRelativeToMpd(output_path_, &adjusted_media_info);
|
2018-01-03 00:10:54 +00:00
|
|
|
const Representation* kNoOriginalRepresentation = nullptr;
|
|
|
|
const double kPeriodStartTimeSeconds = 0.0;
|
|
|
|
|
|
|
|
base::AutoLock auto_lock(lock_);
|
|
|
|
const Representation* representation = AddRepresentationToPeriod(
|
|
|
|
adjusted_media_info, kNoOriginalRepresentation, kPeriodStartTimeSeconds);
|
2017-12-19 20:02:28 +00:00
|
|
|
if (!representation)
|
2014-05-19 21:30:58 +00:00
|
|
|
return false;
|
|
|
|
*container_id = representation->id();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-06-15 21:12:42 +00:00
|
|
|
bool SimpleMpdNotifier::NotifySampleDuration(uint32_t container_id,
|
|
|
|
uint32_t sample_duration) {
|
|
|
|
base::AutoLock auto_lock(lock_);
|
2017-12-19 20:02:28 +00:00
|
|
|
auto it = representation_map_.find(container_id);
|
2015-06-15 21:12:42 +00:00
|
|
|
if (it == representation_map_.end()) {
|
|
|
|
LOG(ERROR) << "Unexpected container_id: " << container_id;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
it->second->SetSampleDuration(sample_duration);
|
2015-09-10 23:01:00 +00:00
|
|
|
return true;
|
2015-06-15 21:12:42 +00:00
|
|
|
}
|
|
|
|
|
2014-09-30 21:52:21 +00:00
|
|
|
bool SimpleMpdNotifier::NotifyNewSegment(uint32_t container_id,
|
|
|
|
uint64_t start_time,
|
|
|
|
uint64_t duration,
|
|
|
|
uint64_t size) {
|
2014-05-19 21:30:58 +00:00
|
|
|
base::AutoLock auto_lock(lock_);
|
2017-12-19 20:02:28 +00:00
|
|
|
auto it = representation_map_.find(container_id);
|
2014-05-19 21:30:58 +00:00
|
|
|
if (it == representation_map_.end()) {
|
|
|
|
LOG(ERROR) << "Unexpected container_id: " << container_id;
|
|
|
|
return false;
|
|
|
|
}
|
2014-05-30 05:01:09 +00:00
|
|
|
it->second->AddNewSegment(start_time, duration, size);
|
2015-09-10 23:01:00 +00:00
|
|
|
return true;
|
2014-05-19 21:30:58 +00:00
|
|
|
}
|
|
|
|
|
2018-01-03 00:10:33 +00:00
|
|
|
bool SimpleMpdNotifier::NotifyCueEvent(uint32_t container_id,
|
|
|
|
uint64_t timestamp) {
|
2018-01-03 00:10:54 +00:00
|
|
|
base::AutoLock auto_lock(lock_);
|
|
|
|
auto it = representation_map_.find(container_id);
|
|
|
|
if (it == representation_map_.end()) {
|
|
|
|
LOG(ERROR) << "Unexpected container_id: " << container_id;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
Representation* original_representation = it->second;
|
|
|
|
AdaptationSet* original_adaptation_set =
|
|
|
|
representation_id_to_adaptation_set_[container_id];
|
|
|
|
|
|
|
|
const MediaInfo& media_info = original_representation->GetMediaInfo();
|
|
|
|
const double period_start_time_seconds =
|
|
|
|
static_cast<double>(timestamp) / media_info.reference_time_scale();
|
|
|
|
const Representation* new_representation = AddRepresentationToPeriod(
|
|
|
|
media_info, original_representation, period_start_time_seconds);
|
|
|
|
if (!new_representation)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// TODO(kqyang): Pass the ID to GetOrCreateAdaptationSet instead?
|
|
|
|
AdaptationSet* new_adaptation_set =
|
|
|
|
representation_id_to_adaptation_set_[container_id];
|
|
|
|
DCHECK(new_adaptation_set);
|
|
|
|
new_adaptation_set->set_id(original_adaptation_set->id());
|
|
|
|
return true;
|
2018-01-03 00:10:33 +00:00
|
|
|
}
|
|
|
|
|
2015-08-26 20:25:29 +00:00
|
|
|
bool SimpleMpdNotifier::NotifyEncryptionUpdate(
|
|
|
|
uint32_t container_id,
|
2015-09-24 22:03:52 +00:00
|
|
|
const std::string& drm_uuid,
|
2015-08-26 20:25:29 +00:00
|
|
|
const std::vector<uint8_t>& new_key_id,
|
|
|
|
const std::vector<uint8_t>& new_pssh) {
|
|
|
|
base::AutoLock auto_lock(lock_);
|
2017-12-19 20:02:28 +00:00
|
|
|
auto it = representation_map_.find(container_id);
|
2015-08-26 20:25:29 +00:00
|
|
|
if (it == representation_map_.end()) {
|
|
|
|
LOG(ERROR) << "Unexpected container_id: " << container_id;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-12-19 20:02:28 +00:00
|
|
|
if (content_protection_in_adaptation_set_) {
|
|
|
|
AdaptationSet* adaptation_set_for_representation =
|
|
|
|
representation_id_to_adaptation_set_[it->second->id()];
|
|
|
|
adaptation_set_for_representation->UpdateContentProtectionPssh(
|
|
|
|
drm_uuid, Uint8VectorToBase64(new_pssh));
|
|
|
|
} else {
|
|
|
|
it->second->UpdateContentProtectionPssh(drm_uuid,
|
|
|
|
Uint8VectorToBase64(new_pssh));
|
2015-07-21 21:52:20 +00:00
|
|
|
}
|
2015-09-10 23:01:00 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SimpleMpdNotifier::Flush() {
|
2015-11-12 21:40:52 +00:00
|
|
|
base::AutoLock auto_lock(lock_);
|
2015-07-21 21:52:20 +00:00
|
|
|
return WriteMpdToFile(output_path_, mpd_builder_.get());
|
2014-05-19 21:30:58 +00:00
|
|
|
}
|
|
|
|
|
2018-01-03 00:10:54 +00:00
|
|
|
Representation* SimpleMpdNotifier::AddRepresentationToPeriod(
|
|
|
|
const MediaInfo& media_info,
|
|
|
|
const Representation* original_representation,
|
|
|
|
double period_start_time_seconds) {
|
|
|
|
Period* period = mpd_builder_->GetOrCreatePeriod(period_start_time_seconds);
|
|
|
|
DCHECK(period);
|
|
|
|
|
|
|
|
AdaptationSet* adaptation_set = period->GetOrCreateAdaptationSet(
|
|
|
|
media_info, content_protection_in_adaptation_set_);
|
|
|
|
DCHECK(adaptation_set);
|
|
|
|
|
|
|
|
Representation* representation = nullptr;
|
|
|
|
if (original_representation) {
|
|
|
|
representation = adaptation_set->CopyRepresentationWithTimeOffset(
|
|
|
|
*original_representation,
|
|
|
|
period->start_time_in_seconds() * media_info.reference_time_scale());
|
|
|
|
} else {
|
|
|
|
representation = adaptation_set->AddRepresentation(media_info);
|
|
|
|
}
|
|
|
|
if (!representation)
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
if (content_protection_in_adaptation_set_) {
|
|
|
|
// ContentProtection elements are already added to AdaptationSet above.
|
|
|
|
// Use RepresentationId to AdaptationSet map to update ContentProtection
|
|
|
|
// in AdaptationSet in NotifyEncryptionUpdate.
|
|
|
|
representation_id_to_adaptation_set_[representation->id()] = adaptation_set;
|
|
|
|
} else {
|
|
|
|
AddContentProtectionElements(media_info, representation);
|
|
|
|
}
|
|
|
|
representation_map_[representation->id()] = representation;
|
|
|
|
return representation;
|
|
|
|
}
|
|
|
|
|
2016-05-20 21:19:33 +00:00
|
|
|
} // namespace shaka
|