UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
vdecmpeg4_Image.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2#pragma once
3
4#include "vdecmpeg4_Types.h"
5
6namespace vdecmpeg4
7{
8
9
10// ----------------------------------------------------------------------------
16{
20 void* userData;
21};
22
23
24// ----------------------------------------------------------------------------
32{
35
38
42
43 void* _private;
44
46
47 double time;
48
49 virtual void Release() const;
50};
51
52
53
54}
55
FPlatformTypes::int16 int16
A 16-bit signed integer.
Definition Platform.h:1123
uint8_t uint8
Definition binka_ue_file_header.h:8
Definition M4Bitstream.h:9
Definition vdecmpeg4_Image.h:32
double time
absolute vop time of this frame in seconds
Definition vdecmpeg4_Image.h:47
int16 texHeight
Total height of video texture containing image (including border region)
Definition vdecmpeg4_Image.h:37
uint8 * y
Pointer to beginning of video y samples.
Definition vdecmpeg4_Image.h:39
int16 height
height of video image (excluding border region)
Definition vdecmpeg4_Image.h:34
void * _private
Definition vdecmpeg4_Image.h:43
VIDYUVTexture texture
Our parent texture. We are a subrectangle inside this parent.
Definition vdecmpeg4_Image.h:45
uint8 * u
Pointer to beginning of video u samples.
Definition vdecmpeg4_Image.h:40
int16 texWidth
Total width of video texture containing image (including border region)
Definition vdecmpeg4_Image.h:36
uint8 * v
Pointer to beginning of video v samples.
Definition vdecmpeg4_Image.h:41
int16 width
Width of video image (excluding border region)
Definition vdecmpeg4_Image.h:33
virtual void Release() const
Release image when no longer needed and referenced.
Definition M4Image.cpp:59
Definition vdecmpeg4_Image.h:16
void * userData
Arbitrary data.
Definition vdecmpeg4_Image.h:20
uint8 * v
Pointer to beginning of texture for v samples.
Definition vdecmpeg4_Image.h:19
uint8 * u
Pointer to beginning of texture for u samples.
Definition vdecmpeg4_Image.h:18
uint8 * y
Pointer to beginning of texture for y samples.
Definition vdecmpeg4_Image.h:17