Sunshine latest
Self-hosted game stream host for Moonlight.
nvenc_encoded_frame.h
Go to the documentation of this file.
1
5#pragma once
6
7// standard includes
8#include <cstdint>
9#include <vector>
10
11namespace nvenc {
12
17 std::vector<uint8_t> data;
18 uint64_t frame_index = 0;
19 bool idr = false;
20 bool after_ref_frame_invalidation = false;
21 };
22
23} // namespace nvenc
Standalone NVENC encoder.
Definition nvenc_base.cpp:87
Encoded frame.
Definition nvenc_encoded_frame.h:16