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