blob: 50e8776a705531da6cf15f0b31561818fca25d4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
// Copyright (c) 2006-2009 The Chromium 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 "media/base/pipeline_impl.h"
namespace media {
PipelineImpl::PipelineImpl() {
// TODO(ralphl): implement PipelineImpl constructor.
NOTIMPLEMENTED();
}
PipelineImpl::~PipelineImpl() {
// TODO(ralphl): implement PipelineImpl destructor.
NOTIMPLEMENTED();
}
bool PipelineImpl::IsInitialized() const {
// TODO(ralphl): implement IsInitialized.
NOTIMPLEMENTED();
return false;
}
int64 PipelineImpl::GetDuration() const {
// TODO(ralphl): implement GetDuration.
NOTIMPLEMENTED();
return 0;
}
int64 PipelineImpl::GetBufferedTime() const {
// TODO(ralphl): implement GetBufferedTime.
NOTIMPLEMENTED();
return 0;
}
int64 PipelineImpl::GetTotalBytes() const {
// TODO(ralphl): implement GetTotalBytes.
NOTIMPLEMENTED();
return 0;
}
int64 PipelineImpl::GetBufferedBytes() const {
// TODO(ralphl): implement GetBufferedBytes.
NOTIMPLEMENTED();
return 0;
}
void PipelineImpl::GetVideoSize(size_t* width_out, size_t* height_out) const {
// TODO(ralphl): implement GetVideoSize.
NOTIMPLEMENTED();
width_out = 0;
height_out = 0;
}
float PipelineImpl::GetVolume() const {
// TODO(ralphl): implement GetVolume.
NOTIMPLEMENTED();
return 0;
}
float PipelineImpl::GetPlaybackRate() const {
// TODO(ralphl): implement GetPlaybackRate.
NOTIMPLEMENTED();
return 0;
}
int64 PipelineImpl::GetTime() const {
// TODO(ralphl): implement GetTime.
NOTIMPLEMENTED();
return 0;
}
PipelineError PipelineImpl::GetError() const {
// TODO(ralphl): implement GetError.
NOTIMPLEMENTED();
return PIPELINE_ERROR_INITIALIZATION_FAILED;
}
bool PipelineImpl::Start(FilterFactory* filter_factory,
const std::string& uri,
Callback1<bool>::Type* init_complete_callback) {
// TODO(ralphl): implement Start.
NOTIMPLEMENTED();
return false;
}
void PipelineImpl::Stop() {
// TODO(ralphl): implement Stop.
NOTIMPLEMENTED();
}
bool PipelineImpl::SetPlaybackRate(float rate) {
// TODO(ralphl): implement SetPlaybackRate.
NOTIMPLEMENTED();
return false;
}
bool PipelineImpl::Seek(int64 time) {
// TODO(ralphl): implement Seek.
NOTIMPLEMENTED();
return false;
}
bool PipelineImpl::SetVolume(float volume) {
// TODO(ralphl): implement SetVolume.
NOTIMPLEMENTED();
return false;
}
} // namespace media
|