Clean up:
[chromium-blink-merge.git] / media / video / video_decode_accelerator.cc
blob6ffbda53b50a6f77b79b1a3139f7363494314326
1 // Copyright (c) 2011 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/video/video_decode_accelerator.h"
7 #include <GLES2/gl2.h>
8 #include "base/logging.h"
10 namespace media {
12 VideoDecodeAccelerator::~VideoDecodeAccelerator() {}
14 bool VideoDecodeAccelerator::CanDecodeOnIOThread() {
15 // GPU process subclasses must override this.
16 LOG(FATAL) << "This should only get called in the GPU process";
17 return false; // not reached
20 GLenum VideoDecodeAccelerator::GetSurfaceInternalFormat() const {
21 return GL_RGBA;
24 VideoDecodeAccelerator::SupportedProfile::SupportedProfile()
25 : profile(media::VIDEO_CODEC_PROFILE_UNKNOWN) {
28 VideoDecodeAccelerator::SupportedProfile::~SupportedProfile() {
31 } // namespace media
33 namespace base {
35 void DefaultDeleter<media::VideoDecodeAccelerator>::operator()(
36 void* video_decode_accelerator) const {
37 static_cast<media::VideoDecodeAccelerator*>(video_decode_accelerator)->
38 Destroy();
41 } // namespace base