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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
//! Defines [`Session`] which represents an ongoing encoder session.
//!
//! You need to start a session using [`Encoder::start_session`] before
//! you can initialize input or output buffers, and before you can encode
//! frames. The [`Session`] also stores some information such as the encode
//! width and height so that you do not have to keep repeating it each time.
use std::fmt::Debug;
use super::{api::ENCODE_API, encoder::Encoder, result::EncodeError};
use crate::{
sys::nvEncodeAPI::{
GUID,
NV_ENC_BUFFER_FORMAT,
NV_ENC_CODEC_AV1_GUID,
NV_ENC_CODEC_H264_GUID,
NV_ENC_CODEC_HEVC_GUID,
NV_ENC_CODEC_PIC_PARAMS,
NV_ENC_PIC_PARAMS,
NV_ENC_PIC_PARAMS_AV1,
NV_ENC_PIC_PARAMS_H264,
NV_ENC_PIC_PARAMS_HEVC,
NV_ENC_PIC_PARAMS_VER,
NV_ENC_PIC_STRUCT,
NV_ENC_PIC_TYPE,
},
EncoderInput,
EncoderOutput,
};
/// An encoding session to create input/output buffers and encode frames.
///
/// You need to call [`Encoder::start_session`] before you can
/// encode frames using the session. On drop, the session will automatically
/// send an empty EOS frame to flush the encoder.
#[derive(Debug)]
pub struct Session {
pub(crate) encoder: Encoder,
pub(crate) width: u32,
pub(crate) height: u32,
pub(crate) buffer_format: NV_ENC_BUFFER_FORMAT,
pub(crate) encode_guid: GUID,
}
impl Session {
/// Get the encoder used for this session.
///
/// This might be useful if you want to use some of
/// the functions on [`Encoder`].
///
/// # Examples
///
/// ```
/// # use cudarc::driver::CudaDevice;
/// # use nvidia_video_codec_sdk::{
/// # sys::nvEncodeAPI::{
/// # NV_ENC_BUFFER_FORMAT::NV_ENC_BUFFER_FORMAT_ARGB,
/// # NV_ENC_CODEC_H264_GUID,
/// # NV_ENC_INITIALIZE_PARAMS,
/// # },
/// # Encoder,
/// # };
/// //* Create encoder. *//
/// # let cuda_device = CudaDevice::new(0).unwrap();
/// # let encoder = Encoder::initialize_with_cuda(cuda_device).unwrap();
///
/// //* Set `encode_guid` and check that H.264 encoding is supported. *//
/// # let encode_guid = NV_ENC_CODEC_H264_GUID;
/// # let encode_guids = encoder.get_encode_guids().unwrap();
/// # assert!(encode_guids.contains(&encode_guid));
///
/// let session = encoder
/// .start_session(
/// NV_ENC_BUFFER_FORMAT_ARGB,
/// NV_ENC_INITIALIZE_PARAMS::new(encode_guid, 1920, 1080),
/// )
/// .unwrap();
/// // We can still use the encoder like this:
/// let _input_formats = session
/// .get_encoder()
/// .get_supported_input_formats(encode_guid);
/// ```
#[must_use]
pub fn get_encoder(&self) -> &Encoder {
&self.encoder
}
/// Encode a frame.
///
/// See [NVIDIA docs](https://docs.nvidia.com/video-technologies/video-codec-sdk/12.0/nvenc-video-encoder-api-prog-guide/index.html#submitting-input-frame-for-encoding).
///
/// # Errors
///
/// Could error if the encode picture parameters were invalid or otherwise
/// incorrect, or if we run out memory.
///
/// There are two recoverable errors:
/// - If this returns an error with
/// [`ErrorKind::EncoderBusy`](super::ErrorKind::EncoderBusy) then you
/// should retry after a few milliseconds.
/// - If this returns an error with
/// [`ErrorKind::NeedMoreInput`](super::ErrorKind::NeedMoreInput), the
/// client should not lock the output bitstream yet. They should continue
/// encoding until this function returns `Ok`, and then lock the
/// bitstreams in the order in which they were originally used.
///
/// # Panics
///
/// Panics if codec specific parameters are provided for a different codec
/// than the one used in the session.
///
/// # Examples
///
/// ```
/// # use cudarc::driver::CudaDevice;
/// # use nvidia_video_codec_sdk::{
/// # sys::nvEncodeAPI::{
/// # NV_ENC_BUFFER_FORMAT::NV_ENC_BUFFER_FORMAT_ARGB,
/// # NV_ENC_CODEC_H264_GUID,
/// # NV_ENC_INITIALIZE_PARAMS,
/// # NV_ENC_PIC_PARAMS,
/// # NV_ENC_PIC_STRUCT,
/// # },
/// # Encoder,
/// # EncodePictureParams
/// # };
/// # const WIDTH: u32 = 1920;
/// # const HEIGHT: u32 = 1080;
/// # const DATA_LEN: usize = (WIDTH * HEIGHT * 4) as usize;
/// //* Create encoder. *//
/// # let cuda_device = CudaDevice::new(0).unwrap();
/// # let encoder = Encoder::initialize_with_cuda(cuda_device).unwrap();
///
/// //* Set `encode_guid` and `buffer_format`, and check that H.264 encoding and the ARGB format are supported. *//
/// # let encode_guid = NV_ENC_CODEC_H264_GUID;
/// # let encode_guids = encoder.get_encode_guids().unwrap();
/// # assert!(encode_guids.contains(&encode_guid));
/// # let buffer_format = NV_ENC_BUFFER_FORMAT_ARGB;
/// # let input_formats = encoder.get_supported_input_formats(encode_guid).unwrap();
/// # assert!(input_formats.contains(&buffer_format));
///
/// // Begin encoder session.
/// let mut initialize_params = NV_ENC_INITIALIZE_PARAMS::new(encode_guid, WIDTH, HEIGHT);
/// initialize_params.display_aspect_ratio(16, 9)
/// .framerate(30, 1)
/// .enable_picture_type_decision();
/// let session = encoder.start_session(
/// buffer_format,
/// initialize_params,
/// ).unwrap();
///
/// //* Create input and output buffers. *//
/// # let mut input_buffer = session
/// # .create_input_buffer()
/// # .unwrap();
/// # let mut output_bitstream = session.create_output_bitstream().unwrap();
///
/// // Encode frame.
/// unsafe { input_buffer.lock().unwrap().write(&[0; DATA_LEN]) };
/// session
/// .encode_picture(
/// &mut input_buffer,
/// &mut output_bitstream,
/// // Optional picture parameters
/// EncodePictureParams {
/// input_timestamp: 42,
/// ..Default::default()
/// }
/// )
/// .unwrap();
/// # // TODO: check that output is correct.
/// let _data = output_bitstream.lock().unwrap().data();
/// ```
pub fn encode_picture<I: EncoderInput, O: EncoderOutput>(
&self,
input_buffer: &mut I,
output_bitstream: &mut O,
params: EncodePictureParams,
) -> Result<(), EncodeError> {
if let Some(codec_params) = ¶ms.codec_params {
assert_eq!(
codec_params.get_codec_guid(),
self.encode_guid,
"The provided codec specific params must match the codec used"
);
};
let mut encode_pic_params = NV_ENC_PIC_PARAMS {
version: NV_ENC_PIC_PARAMS_VER,
inputWidth: self.width,
inputHeight: self.height,
inputPitch: input_buffer.pitch(),
inputBuffer: input_buffer.handle(),
outputBitstream: output_bitstream.handle(),
bufferFmt: self.buffer_format,
pictureStruct: NV_ENC_PIC_STRUCT::NV_ENC_PIC_STRUCT_FRAME,
inputTimeStamp: params.input_timestamp,
codecPicParams: params.codec_params.map(Into::into).unwrap_or_default(),
pictureType: params.picture_type,
..Default::default()
};
unsafe { (ENCODE_API.encode_picture)(self.encoder.ptr, &mut encode_pic_params) }
.result(&self.encoder)
}
/// Send an EOS notifications to flush the encoder.
///
/// This function is called automatically on drop, but if you wish to
/// get the data after flushing, you should call this function yourself.
///
/// # Errors
///
/// Could error if we run out of memory.
///
/// If this returns an error with
/// [`ErrorKind::EncoderBusy`](super::ErrorKind::EncoderBusy) then you
/// should retry after a few milliseconds.
pub fn end_of_stream(&self) -> Result<(), EncodeError> {
let mut encode_pic_params = NV_ENC_PIC_PARAMS::end_of_stream();
unsafe { (ENCODE_API.encode_picture)(self.encoder.ptr, &mut encode_pic_params) }
.result(&self.encoder)
}
}
/// Send an EOS notifications on drop to flush the encoder.
impl Drop for Session {
fn drop(&mut self) {
if !std::thread::panicking() {
self.end_of_stream()
.expect("The encoder should not be busy.");
}
}
}
/// Optional parameters for [`Session::encode_picture`].
#[allow(missing_debug_implementations)] // CodecPictureParams doesn't implement Debug
pub struct EncodePictureParams {
/// Opaque data used for identifying the corresponding encoded frame
pub input_timestamp: u64,
/// The picture type to use, if picture type decision is disabled in the
/// encoder
pub picture_type: NV_ENC_PIC_TYPE,
/// Codec-specific parameters
pub codec_params: Option<CodecPictureParams>,
}
impl Default for EncodePictureParams {
fn default() -> Self {
Self {
input_timestamp: 0,
picture_type: NV_ENC_PIC_TYPE::NV_ENC_PIC_TYPE_UNKNOWN,
codec_params: None,
}
}
}
/// Codec specific picture parameters
#[allow(missing_debug_implementations)] // NV_ENC_PIC_PARAMS_H264 contains a union, thus doesn't derive Debug
pub enum CodecPictureParams {
/// Parameters for H.264
H264(NV_ENC_PIC_PARAMS_H264),
/// Parameters for HEVC or H.265
Hevc(NV_ENC_PIC_PARAMS_HEVC),
/// Parameters for AV1
Av1(NV_ENC_PIC_PARAMS_AV1),
}
impl CodecPictureParams {
/// Returns the GUID representing the codec for which the parameters are
/// specified.
#[must_use]
pub fn get_codec_guid(&self) -> GUID {
match self {
Self::H264(_) => NV_ENC_CODEC_H264_GUID,
Self::Hevc(_) => NV_ENC_CODEC_HEVC_GUID,
Self::Av1(_) => NV_ENC_CODEC_AV1_GUID,
}
}
}
impl From<CodecPictureParams> for NV_ENC_CODEC_PIC_PARAMS {
fn from(value: CodecPictureParams) -> Self {
match value {
CodecPictureParams::H264(params) => Self {
h264PicParams: params,
},
CodecPictureParams::Hevc(params) => Self {
hevcPicParams: params,
},
CodecPictureParams::Av1(params) => Self {
av1PicParams: params,
},
}
}
}