OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "media/base/filters.h" | 5 #include "media/base/filters.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "base/message_loop.h" | 8 #include "base/message_loop.h" |
9 | 9 |
10 namespace media { | 10 namespace media { |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 } | 126 } |
127 | 127 |
128 const char* VideoDecoder::message_loop_name() const { | 128 const char* VideoDecoder::message_loop_name() const { |
129 return "VideoDecoderThread"; | 129 return "VideoDecoderThread"; |
130 } | 130 } |
131 | 131 |
132 const char* VideoRenderer::major_mime_type() const { | 132 const char* VideoRenderer::major_mime_type() const { |
133 return mime_type::kMajorTypeVideo; | 133 return mime_type::kMajorTypeVideo; |
134 } | 134 } |
135 | 135 |
| 136 void* DemuxerStream::QueryInterface(const char* interface_id) { |
| 137 return NULL; |
| 138 } |
| 139 |
136 DemuxerStream::~DemuxerStream() {} | 140 DemuxerStream::~DemuxerStream() {} |
137 | 141 |
138 VideoDecoder::VideoDecoder() {} | 142 VideoDecoder::VideoDecoder() {} |
139 | 143 |
140 VideoDecoder::~VideoDecoder() {} | 144 VideoDecoder::~VideoDecoder() {} |
141 | 145 |
142 AudioDecoder::AudioDecoder() {} | 146 AudioDecoder::AudioDecoder() {} |
143 | 147 |
144 AudioDecoder::~AudioDecoder() {} | 148 AudioDecoder::~AudioDecoder() {} |
145 | 149 |
146 } // namespace media | 150 } // namespace media |
OLD | NEW |