1 // Copyright 2015 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. 4 5 #include "vp9_picture.h" 6 7 namespace media { 8 VP9Picture()9VP9Picture::VP9Picture() {} 10 ~VP9Picture()11VP9Picture::~VP9Picture() {} 12 AsV4L2VP9Picture()13V4L2VP9Picture* VP9Picture::AsV4L2VP9Picture() { 14 return nullptr; 15 } 16 17 } // namespace media 18