blob: ceb6cc49eb8851cf7863ac9c7fe1f2c79b1cc8f4 [file] [log] [blame]
// Copyright 2016 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "src/media/playback/mediaplayer/demux/demux.h"
#include "src/media/playback/mediaplayer/ffmpeg/ffmpeg_demux_factory.h"
namespace media_player {
std::unique_ptr<DemuxFactory> DemuxFactory::Create(
component::StartupContext* startup_context) {
return FfmpegDemuxFactory::Create(startup_context);
}
} // namespace media_player