This is jamesr@ code I am landing.
[chromium-blink-merge.git] / media / base / video_decoder.cc
blob9a6de2fdd35904aaa838506e31c894af836be6c0
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 bool VideoDecoder::NeedsBitstreamConversion() const {
16 return false;
19 bool VideoDecoder::CanReadWithoutStalling() const {
20 return true;
23 int VideoDecoder::GetMaxDecodeRequests() const {
24 return 1;
27 } // namespace media