aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2023-07-25 18:01:50 +0200
committerKostya Shishkov <kostya.shishkov@gmail.com>2023-07-25 18:01:50 +0200
commit48db874020a16b0ea2500a18297ce73f5955c05f (patch)
treebce882298fe24e01783ed79c8d131f6a5b746029
parent4f84ed36c77b376a82abf05b77c1433b4bf30ea4 (diff)
downloadnihav-48db874020a16b0ea2500a18297ce73f5955c05f.tar.gz
rmmux: fix test checksums
Those were wrong in 353373a32fcbf842efb6fb11462b5c757b0d382e
-rw-r--r--nihav-realmedia/src/muxers/rmvb/mod.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/nihav-realmedia/src/muxers/rmvb/mod.rs b/nihav-realmedia/src/muxers/rmvb/mod.rs
index d5af530..661e59a 100644
--- a/nihav-realmedia/src/muxers/rmvb/mod.rs
+++ b/nihav-realmedia/src/muxers/rmvb/mod.rs
@@ -505,7 +505,7 @@ mod test {
};
test_remuxing(&dec_config, &enc_config);*/
test_remuxing_md5(&dec_config, "realmedia", &mux_reg,
- [0x80e7d0c2, 0x5bf1b72b, 0x653beb40, 0x81ab14e9]);
+ [0x9bc90ab0, 0x6b8c42f7, 0xaf81e8bf, 0x7c76ec57]);
}
#[test]
@@ -626,7 +626,7 @@ mod test {
};
test_remuxing(&dec_config, &enc_config);*/
test_remuxing_md5(&dec_config, "realmedia", &mux_reg,
- [0x7cfb02af, 0xbbf64748, 0x086b5005, 0xc55dbc9d]);
+ [0x8392bb8c, 0xeb8f4d04, 0x25262829, 0x63b2fda7]);
}
#[test]
fn test_rm_muxer_ralf() {
@@ -650,6 +650,6 @@ mod test {
};
test_remuxing(&dec_config, &enc_config);*/
test_remuxing_md5(&dec_config, "realmedia", &mux_reg,
- [0xaf8345be, 0xf3912b40, 0xf720acdc, 0xc825b29e]);
+ [0xe90893eb, 0x8634642c, 0xef679ac4, 0x2e89314a]);
}
}