X-Git-Url: https://git.nihav.org/?p=nihav.git;a=blobdiff_plain;f=nihav-realmedia%2Fsrc%2Fmuxers%2Frmvb%2Fvideostream.rs;fp=nihav-realmedia%2Fsrc%2Fmuxers%2Frmvb%2Fvideostream.rs;h=2d561e65063ae702b30f74349725708a6dc7abe2;hp=b6ed1a794ef071b049a68084840360489447bae5;hb=e6aaad5c5273cd814b5748b7faf3751835a37217;hpb=625751036014b099fd9c126397bc973cb0543130 diff --git a/nihav-realmedia/src/muxers/rmvb/videostream.rs b/nihav-realmedia/src/muxers/rmvb/videostream.rs index b6ed1a7..2d561e6 100644 --- a/nihav-realmedia/src/muxers/rmvb/videostream.rs +++ b/nihav-realmedia/src/muxers/rmvb/videostream.rs @@ -249,7 +249,7 @@ fn write_16_or_32(dst: &mut Vec, val: u32) { fn write_multiple_frame(dst: &mut Vec, frm: &VideoData) { dst.push(0xC0); // 0x3 = multiple frame write_16_or_32(dst, frm.data.len() as u32); - write_16_or_32(dst, frm.pts as u32); + write_16_or_32(dst, frm.pts); dst.push(frm.seq_no); dst.extend_from_slice(&frm.data); }