2014-02-14 23:21:05 +00:00
|
|
|
// Copyright 2014 Google Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// 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
|
2013-09-24 04:17:12 +00:00
|
|
|
|
2014-10-01 22:10:21 +00:00
|
|
|
#include "packager/media/base/stream_info.h"
|
2013-09-24 04:17:12 +00:00
|
|
|
|
2014-06-20 21:45:09 +00:00
|
|
|
#include <inttypes.h>
|
|
|
|
|
2014-10-01 22:10:21 +00:00
|
|
|
#include "packager/base/logging.h"
|
|
|
|
#include "packager/base/strings/stringprintf.h"
|
2013-09-24 04:17:12 +00:00
|
|
|
|
2016-05-20 21:19:33 +00:00
|
|
|
namespace shaka {
|
2013-09-24 04:17:12 +00:00
|
|
|
namespace media {
|
|
|
|
|
2018-06-19 16:52:54 +00:00
|
|
|
std::string StreamTypeToString(StreamType type) {
|
|
|
|
switch (type) {
|
|
|
|
case kStreamUnknown:
|
|
|
|
return "Unknown";
|
|
|
|
case kStreamVideo:
|
|
|
|
return "Video";
|
|
|
|
case kStreamAudio:
|
|
|
|
return "Audio";
|
|
|
|
case kStreamText:
|
|
|
|
return "Text";
|
|
|
|
}
|
|
|
|
|
|
|
|
NOTREACHED() << "Unhandled StreamType with value " << static_cast<int>(type);
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2018-06-19 16:58:29 +00:00
|
|
|
StreamInfo::StreamInfo(StreamType stream_type,
|
|
|
|
int track_id,
|
|
|
|
uint32_t time_scale,
|
|
|
|
uint64_t duration,
|
|
|
|
Codec codec,
|
2013-10-14 20:55:48 +00:00
|
|
|
const std::string& codec_string,
|
2018-06-19 16:58:29 +00:00
|
|
|
const uint8_t* codec_config,
|
|
|
|
size_t codec_config_size,
|
|
|
|
const std::string& language,
|
|
|
|
bool is_encrypted)
|
2013-09-24 04:17:12 +00:00
|
|
|
: stream_type_(stream_type),
|
|
|
|
track_id_(track_id),
|
|
|
|
time_scale_(time_scale),
|
2013-10-14 20:55:48 +00:00
|
|
|
duration_(duration),
|
2016-07-27 00:51:08 +00:00
|
|
|
codec_(codec),
|
2013-10-14 20:55:48 +00:00
|
|
|
codec_string_(codec_string),
|
|
|
|
language_(language),
|
2013-09-24 04:17:12 +00:00
|
|
|
is_encrypted_(is_encrypted) {
|
2016-06-27 19:30:32 +00:00
|
|
|
if (codec_config_size > 0) {
|
|
|
|
codec_config_.assign(codec_config, codec_config + codec_config_size);
|
2014-07-14 21:35:57 +00:00
|
|
|
}
|
2013-09-24 04:17:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
StreamInfo::~StreamInfo() {}
|
|
|
|
|
2013-10-14 20:55:48 +00:00
|
|
|
std::string StreamInfo::ToString() const {
|
2014-03-05 23:15:22 +00:00
|
|
|
return base::StringPrintf(
|
2015-06-17 22:42:56 +00:00
|
|
|
"type: %s\n codec_string: %s\n time_scale: %d\n duration: "
|
2015-09-25 22:48:18 +00:00
|
|
|
"%" PRIu64 " (%.1f seconds)\n is_encrypted: %s\n",
|
2018-06-19 16:58:29 +00:00
|
|
|
(stream_type_ == kStreamAudio ? "Audio" : "Video"), codec_string_.c_str(),
|
|
|
|
time_scale_, duration_, static_cast<double>(duration_) / time_scale_,
|
2014-03-05 23:15:22 +00:00
|
|
|
is_encrypted_ ? "true" : "false");
|
2013-09-24 04:17:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace media
|
2016-05-20 21:19:33 +00:00
|
|
|
} // namespace shaka
|