vp8_picture.cc 486 B

123456789101112131415161718192021
  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. #include "media/gpu/vp8_picture.h"
  5. namespace media {
  6. VP8Picture::VP8Picture() : frame_hdr(new Vp8FrameHeader()) {}
  7. VP8Picture::~VP8Picture() = default;
  8. V4L2VP8Picture* VP8Picture::AsV4L2VP8Picture() {
  9. return nullptr;
  10. }
  11. VaapiVP8Picture* VP8Picture::AsVaapiVP8Picture() {
  12. return nullptr;
  13. }
  14. } // namespace media