2014-06-27 23:07:36 +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
|
|
|
|
|
|
|
|
#ifndef APP_STREAM_DESCRIPTOR_H_
|
|
|
|
#define APP_STREAM_DESCRIPTOR_H_
|
|
|
|
|
2014-09-30 23:52:58 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2014-06-27 23:07:36 +00:00
|
|
|
#include <set>
|
|
|
|
#include <string>
|
|
|
|
|
2016-01-06 23:52:18 +00:00
|
|
|
#include "packager/media/base/container_names.h"
|
2015-12-16 18:20:13 +00:00
|
|
|
|
2016-05-20 21:19:33 +00:00
|
|
|
namespace shaka {
|
2014-06-27 23:07:36 +00:00
|
|
|
namespace media {
|
|
|
|
|
|
|
|
/// Defines a single input/output stream, it's input source, output destination,
|
|
|
|
/// stream selector, and optional segment template and user-specified bandwidth.
|
|
|
|
struct StreamDescriptor {
|
|
|
|
StreamDescriptor();
|
|
|
|
~StreamDescriptor();
|
|
|
|
|
|
|
|
std::string stream_selector;
|
|
|
|
std::string input;
|
|
|
|
std::string output;
|
|
|
|
std::string segment_template;
|
2014-09-30 21:52:21 +00:00
|
|
|
uint32_t bandwidth;
|
2015-02-02 19:27:32 +00:00
|
|
|
std::string language;
|
2015-12-16 18:20:13 +00:00
|
|
|
MediaContainerName output_format;
|
2016-04-16 22:58:47 +00:00
|
|
|
std::string hls_name;
|
|
|
|
std::string hls_group_id;
|
|
|
|
std::string hls_playlist_name;
|
2014-06-27 23:07:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class StreamDescriptorCompareFn {
|
|
|
|
public:
|
|
|
|
bool operator()(const StreamDescriptor& a, const StreamDescriptor& b) {
|
|
|
|
return a.input < b.input;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Sorted list of StreamDescriptor.
|
|
|
|
typedef std::multiset<StreamDescriptor, StreamDescriptorCompareFn>
|
|
|
|
StreamDescriptorList;
|
|
|
|
|
|
|
|
/// Parses a descriptor string, and inserts into sorted list of stream
|
|
|
|
/// descriptors.
|
|
|
|
/// @param descriptor_string contains comma separate name-value pairs describing
|
|
|
|
/// the stream.
|
|
|
|
/// @param descriptor_list is a pointer to the sorted descriptor list into
|
|
|
|
/// which the new descriptor should be inserted.
|
|
|
|
/// @return true if successful, false otherwise. May print error messages.
|
|
|
|
bool InsertStreamDescriptor(const std::string& descriptor_string,
|
|
|
|
StreamDescriptorList* descriptor_list);
|
|
|
|
|
|
|
|
} // namespace media
|
2016-05-20 21:19:33 +00:00
|
|
|
} // namespace shaka
|
2014-06-27 23:07:36 +00:00
|
|
|
|
|
|
|
#endif // APP_STREAM_DESCRIPTOR_H_
|