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