Ignore title parameter for navigator.registerProtocolHandler
[chromium-blink-merge.git] / media / base / video_decoder.cc
blob118e2a3e3a9a8b90a79830351467454c0979fd10
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/video_decoder.h"
7 #include "media/base/video_frame.h"
9 namespace media {
11 VideoDecoder::VideoDecoder() {}
13 VideoDecoder::~VideoDecoder() {}
15 scoped_refptr<VideoFrame> VideoDecoder::GetDecodeOutput() {
16 return NULL;
19 bool VideoDecoder::NeedsBitstreamConversion() const {
20 return false;
23 bool VideoDecoder::CanReadWithoutStalling() const {
24 return true;
27 int VideoDecoder::GetMaxDecodeRequests() const {
28 return 1;
31 } // namespace media