There was an error while loading. Please reload this page.
1 parent 158e93a commit 90df3dfCopy full SHA for 90df3df
1 file changed
src/decoder_nvcodec.rs
@@ -31,6 +31,10 @@ impl NvcodecDecoder {
31
pub fn new_h264(params: &LayoutDecodeParams) -> orfail::Result<Self> {
32
log::debug!("create nvcodec(H264) decoder");
33
let config = params.nvcodec_h264.clone();
34
+ eprintln!(
35
+ "[nvcodec-debug] new_h264 config.max_num_decode_surfaces={} max_display_delay={}",
36
+ config.max_num_decode_surfaces, config.max_display_delay
37
+ );
38
Ok(Self {
39
inner: Some(shiguredo_nvcodec::Decoder::new_h264(config.clone()).or_fail()?),
40
input_queue: VecDeque::new(),
0 commit comments