blob: e49b4d4fe040cb8de78ba2cbb7d07b2f5260c1c7 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_RENDERER_MODULES_WEBGL_WEBGL_VIDEO_FRAME_INFO_H_
#define THIRD_PARTY_BLINK_RENDERER_MODULES_WEBGL_WEBGL_VIDEO_FRAME_INFO_H_
#include "third_party/blink/public/platform/web_media_player.h"
#include "third_party/blink/renderer/platform/bindings/script_wrappable.h"
namespace blink {
class WebGLVideoFrameInfo final : public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
static WebGLVideoFrameInfo* Create(WebMediaPlayer::VideoFrameUploadMetadata*);
explicit WebGLVideoFrameInfo(WebMediaPlayer::VideoFrameUploadMetadata*);
double currentTime() const { return current_time_; }
unsigned textureWidth() const { return texture_width_; }
unsigned textureHeight() const { return texture_height_; }
private:
double current_time_ = 0;
unsigned texture_width_ = 0;
unsigned texture_height_ = 0;
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_MODULES_WEBGL_WEBGL_VIDEO_FRAME_INFO_H_