2013-09-24 01:35:40 +00:00
|
|
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#ifndef MEDIA_BASE_TEXT_TRACK_H_
|
|
|
|
#define MEDIA_BASE_TEXT_TRACK_H_
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2014-10-01 22:10:21 +00:00
|
|
|
#include "packager/base/callback.h"
|
|
|
|
#include "packager/base/memory/scoped_ptr.h"
|
|
|
|
#include "packager/base/time/time.h"
|
2013-09-24 01:35:40 +00:00
|
|
|
|
2014-09-19 20:41:13 +00:00
|
|
|
namespace edash_packager {
|
2013-09-24 01:35:40 +00:00
|
|
|
namespace media {
|
|
|
|
|
2014-01-24 18:46:46 +00:00
|
|
|
/// Specifies the varieties of text tracks.
|
2013-09-24 01:35:40 +00:00
|
|
|
enum TextKind {
|
|
|
|
kTextSubtitles,
|
|
|
|
kTextCaptions,
|
|
|
|
kTextDescriptions,
|
|
|
|
kTextMetadata,
|
|
|
|
kTextNone
|
|
|
|
};
|
|
|
|
|
|
|
|
class TextTrack {
|
|
|
|
public:
|
2015-07-22 23:40:45 +00:00
|
|
|
~TextTrack() override {}
|
2013-09-24 01:35:40 +00:00
|
|
|
virtual void addWebVTTCue(const base::TimeDelta& start,
|
|
|
|
const base::TimeDelta& end,
|
|
|
|
const std::string& id,
|
|
|
|
const std::string& content,
|
|
|
|
const std::string& settings) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef base::Callback<scoped_ptr<TextTrack>
|
|
|
|
(TextKind kind,
|
|
|
|
const std::string& label,
|
|
|
|
const std::string& language)> AddTextTrackCB;
|
|
|
|
|
|
|
|
} // namespace media
|
2014-09-19 20:41:13 +00:00
|
|
|
} // namespace edash_packager
|
2013-09-24 01:35:40 +00:00
|
|
|
|
|
|
|
#endif // MEDIA_BASE_TEXT_TRACK_H_
|