Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/rust/src/demuxer/common_types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ use crate::bindings::{lib_ccx_ctx, list_head};
use crate::ffi_alloc;
use lib_ccxr::common::{Codec, Decoder608Report, DecoderDtvccReport, StreamMode, StreamType};
use lib_ccxr::time::Timestamp;
use std::ffi::c_char;
use std::ptr::null_mut;

// Size of the Startbytes Array in CcxDemuxer - const 1MB
Expand Down Expand Up @@ -79,7 +80,7 @@ pub struct CapInfo {
pub prev_counter: i32,
pub codec_private_data: *mut std::ffi::c_void,
pub ignore: i32,
pub lang: [i8; 4],
pub lang: [c_char; 4],

/**
* List joining all streams in TS
Expand Down
Loading