1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "media/base/demuxer.h"
7 #include "base/logging.h"
11 DemuxerHost::~DemuxerHost() {}
15 Demuxer::~Demuxer() {}
17 void Demuxer::SetPlaybackRate(float playback_rate
) {}
19 void Demuxer::Seek(base::TimeDelta time
, const PipelineStatusCB
& status_cb
) {
20 DCHECK(!status_cb
.is_null());
21 status_cb
.Run(PIPELINE_OK
);
24 void Demuxer::Stop(const base::Closure
& callback
) {
25 DCHECK(!callback
.is_null());
29 void Demuxer::OnAudioRendererDisabled() {}