forked from jp9000/OBS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIPCStructs.h
84 lines (68 loc) · 2.08 KB
/
IPCStructs.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/********************************************************************************
Copyright (C) 2013 Ruwen Hahn <[email protected]>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
********************************************************************************/
#pragma once
#include <mfxvideo++.h>
#include <cstdint>
#pragma pack(push)
#pragma pack(1)
struct init_request
{
enum { MODE_QUERY, MODE_ENCODE } mode;
uint32_t obs_process_id;
uint16_t target_usage, profile;
int32_t fps, keyint, bframes, width, height, max_bitrate, buffer_size;
bool use_cbr;
int32_t full_range, matrix, primaries, transfer;
bool use_custom_impl;
mfxVersion custom_version;
mfxIMPL custom_impl, custom_intf;
};
struct init_response
{
mfxU16 target_usage, profile;
mfxVersion version;
mfxIMPL requested_impl,
actual_impl;
bool using_custom_impl;
uint16_t bframe_delay;
uint64_t frame_ticks;
uint16_t bitstream_num,
frame_num;
uint32_t bitstream_size,
frame_size,
UV_offset,
V_offset,
frame_pitch;
};
struct spspps_size
{
mfxU16 sps_size,
pps_size;
};
struct queued_frame
{
bool is_new;
bool request_keyframe;
mfxU64 timestamp;
uint32_t frame_index;
};
struct bitstream_info
{
mfxU64 time_stamp;
mfxI64 decode_time_stamp;
mfxU32 data_offset, data_length;
mfxU16 pic_struct, frame_type;
};
#pragma pack(pop)