2017-06-09 15:30:16 +00:00
|
|
|
// Copyright 2017 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
|
|
|
|
|
|
|
|
#ifndef PACKAGER_MEDIA_BASE_TEXT_SAMPLE_H_
|
|
|
|
#define PACKAGER_MEDIA_BASE_TEXT_SAMPLE_H_
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace shaka {
|
|
|
|
namespace media {
|
|
|
|
|
|
|
|
class TextSample {
|
|
|
|
public:
|
|
|
|
TextSample() = default;
|
|
|
|
|
|
|
|
const std::string& id() const { return id_; }
|
2018-03-26 18:04:09 +00:00
|
|
|
int64_t start_time() const { return start_time_; }
|
|
|
|
int64_t duration() const { return duration_; }
|
2017-06-09 15:30:16 +00:00
|
|
|
const std::string& settings() const { return settings_; }
|
|
|
|
const std::string& payload() const { return payload_; }
|
2018-03-26 18:04:09 +00:00
|
|
|
int64_t EndTime() const;
|
2017-06-09 15:30:16 +00:00
|
|
|
|
|
|
|
void set_id(const std::string& id) { id_ = id; }
|
2018-03-26 18:04:09 +00:00
|
|
|
void SetTime(int64_t start_time, int64_t end_time);
|
2017-09-14 17:31:16 +00:00
|
|
|
void AppendStyle(const std::string& style);
|
2017-06-09 15:30:16 +00:00
|
|
|
void AppendPayload(const std::string& payload);
|
|
|
|
|
|
|
|
private:
|
2017-05-22 16:35:49 +00:00
|
|
|
// Allow the compiler generated copy constructor and assignment operator
|
|
|
|
// intentionally. Since the text data is typically small, the performance
|
|
|
|
// impact is minimal.
|
2017-06-09 15:30:16 +00:00
|
|
|
|
|
|
|
std::string id_;
|
2018-03-26 18:04:09 +00:00
|
|
|
int64_t start_time_ = 0;
|
|
|
|
int64_t duration_ = 0;
|
2017-06-09 15:30:16 +00:00
|
|
|
std::string settings_;
|
|
|
|
std::string payload_;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace media
|
|
|
|
} // namespace shaka
|
|
|
|
|
2017-12-20 00:56:36 +00:00
|
|
|
#endif // PACKAGER_MEDIA_BASE_TEXT_SAMPLE_H_
|