Home | History | Annotate | Download | only in vda
      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 
     10 VP8Picture::VP8Picture() {}
     11 
     12 VP8Picture::~VP8Picture() {}
     13 
     14 V4L2VP8Picture* VP8Picture::AsV4L2VP8Picture() {
     15   return nullptr;
     16 }
     17 
     18 }  // namespace media
     19