ZegoLiveRoom
video_format.h
Go to the documentation of this file.
1#ifndef ZEGOVideoFormat_h
2#define ZEGOVideoFormat_h
3
4namespace AVE
5{
7 {
23 };
24
26 {
28 {
29 width = 0;
30 height = 0;
31 strides[0] = strides[1] = strides[2] = strides[3] = 0;
32 rotation = 0;
34 }
35
37 {
38 this->width = width;
39 this->height = height;
40 strides[0] = strides[1] = strides[2] = strides[3] = 0;
41 rotation = 0;
42 this->pixel_format = pixel_format;
43 }
44
45 bool operator==(const VideoDataFormat& other)
46 {
47 return (width == other.width && height == other.height &&
48 strides[0] == other.strides[0] && strides[1] == other.strides[1] &&
49 strides[2] == other.strides[2] && strides[3] == other.strides[3] &&
50 rotation == other.rotation && pixel_format == other.pixel_format);
51 }
52
53 bool operator!=(const VideoDataFormat& other)
54 {
55 return !(*this == other);
56 }
57
58 int width;
59 int height;
60 int strides[4];
63 };
64
66 {
68 planes[0] = planes[1] = planes[2] = planes[3] = 0;
69 lens[0] = lens[1] = lens[2] = lens[3] = 0;
70 }
72 unsigned char* planes[4];
73 unsigned int lens[4];
74 };
75
76}
77#endif /* ZEGOVideoFormat_h */
Definition: audio_capture.h:4
VideoPixelFormat
Definition: video_format.h:7
@ PIXEL_FORMAT_AVC_ANNEXB
Definition: video_format.h:18
@ PIXEL_FORMAT_BGRA32
Definition: video_format.h:12
@ PIXEL_FORMAT_UYVY
Definition: video_format.h:20
@ PIXEL_FORMAT_I420
Definition: video_format.h:9
@ PIXEL_FORMAT_BGR24
Definition: video_format.h:21
@ PIXEL_FORMAT_NV21
Definition: video_format.h:11
@ PIXEL_FORMAT_RGBA32
Definition: video_format.h:13
@ PIXEL_FORMAT_RGB24
Definition: video_format.h:22
@ PIXEL_FORMAT_YUY2
Definition: video_format.h:19
@ PIXEL_FORMAT_ARGB32
Definition: video_format.h:14
@ PIXEL_FORMAT_ABGR32
Definition: video_format.h:15
@ PIXEL_FORMAT_NV12
Definition: video_format.h:10
@ PIXEL_FORMAT_UNKNOWN
Definition: video_format.h:8
@ PIXEL_FORMAT_AVC_AVCC
Definition: video_format.h:17
@ PIXEL_FORMAT_I422
Definition: video_format.h:16
Definition: video_format.h:26
VideoDataFormat(int width, int height, VideoPixelFormat pixel_format)
Definition: video_format.h:36
VideoPixelFormat pixel_format
Definition: video_format.h:62
int width
Definition: video_format.h:58
int strides[4]
Definition: video_format.h:60
int rotation
Definition: video_format.h:61
int height
Definition: video_format.h:59
VideoDataFormat()
Definition: video_format.h:27
bool operator==(const VideoDataFormat &other)
Definition: video_format.h:45
bool operator!=(const VideoDataFormat &other)
Definition: video_format.h:53
Definition: video_format.h:66
VideoFrameWithFormat()
Definition: video_format.h:67
VideoDataFormat format
Definition: video_format.h:71
unsigned int lens[4]
Definition: video_format.h:73
unsigned char * planes[4]
Definition: video_format.h:72