21 lines
708 B
C++
21 lines
708 B
C++
// Copyright 2016 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
|
|
|
|
#include "packager/hls/base/mock_media_playlist.h"
|
|
|
|
namespace shaka {
|
|
namespace hls {
|
|
|
|
MockMediaPlaylist::MockMediaPlaylist(HlsPlaylistType type,
|
|
const std::string& file_name,
|
|
const std::string& name,
|
|
const std::string& group_id)
|
|
: MediaPlaylist(type, 0, file_name, name, group_id) {}
|
|
MockMediaPlaylist::~MockMediaPlaylist() {}
|
|
|
|
} // namespace hls
|
|
} // namespace shaka
|