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 // Note: ported from Chromium commit head: 6e70beb 5 6 #include "vp9_picture.h" 7 8 namespace media { 9 VP9Picture()10VP9Picture::VP9Picture() {} 11 ~VP9Picture()12VP9Picture::~VP9Picture() {} 13 AsV4L2VP9Picture()14V4L2VP9Picture* VP9Picture::AsV4L2VP9Picture() { 15 return nullptr; 16 } 17 18 } // namespace media 19