blob: 5b08f5845185aae468d43981889f9778a81a2a78 [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 "garnet/bin/mediaplayer/demux/demux.h"
#include "garnet/bin/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