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 "vp8_picture.h" 7 8 namespace media { 9 VP8Picture()10VP8Picture::VP8Picture() {} 11 ~VP8Picture()12VP8Picture::~VP8Picture() {} 13 AsV4L2VP8Picture()14V4L2VP8Picture* VP8Picture::AsV4L2VP8Picture() { 15 return nullptr; 16 } 17 18 } // namespace media 19