[safe-browsing] Database full hash matches like prefix match.
[chromium-blink-merge.git] / media / base / video_decoder.cc
blobed875f48eab46c2f5f38bd10fd6281aa76463b13
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 } // namespace media