Some misc cleanups
Put everything inside edash_packager namespace. Change-Id: Iade763d5d3c99a4cca28975a40465459ff2ad86c
This commit is contained in:
parent
fd35084722
commit
7e6cd6e853
|
@ -11,7 +11,6 @@
|
|||
#include <openssl/rand.h>
|
||||
|
||||
#include "base/logging.h"
|
||||
#include "base/rand_util.h"
|
||||
|
||||
namespace {
|
||||
|
||||
|
|
|
@ -13,13 +13,10 @@
|
|||
|
||||
#include "base/memory/ref_counted.h"
|
||||
#include "base/memory/scoped_ptr.h"
|
||||
#include "base/time/clock.h"
|
||||
#include "media/base/muxer_options.h"
|
||||
#include "media/base/status.h"
|
||||
|
||||
namespace base {
|
||||
class Clock;
|
||||
}
|
||||
|
||||
namespace edash_packager {
|
||||
namespace media {
|
||||
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
#include "base/strings/string_split.h"
|
||||
#include "base/strings/stringprintf.h"
|
||||
|
||||
namespace edash_packager {
|
||||
namespace {
|
||||
bool ValidateFormatTag(const std::string& format_tag) {
|
||||
DCHECK(!format_tag.empty());
|
||||
|
@ -32,7 +33,6 @@ bool ValidateFormatTag(const std::string& format_tag) {
|
|||
}
|
||||
} // namespace
|
||||
|
||||
namespace edash_packager {
|
||||
namespace media {
|
||||
|
||||
bool ValidateSegmentTemplate(const std::string& segment_template) {
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
} \
|
||||
} while (0)
|
||||
|
||||
namespace edash_packager {
|
||||
namespace {
|
||||
|
||||
const bool kEnableKeyRotation = true;
|
||||
|
@ -110,7 +111,6 @@ bool GetPsshDataFromTrack(const base::DictionaryValue& track_dict,
|
|||
|
||||
} // namespace
|
||||
|
||||
namespace edash_packager {
|
||||
namespace media {
|
||||
|
||||
// A ref counted wrapper for EncryptionKeyMap.
|
||||
|
|
Loading…
Reference in New Issue