mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2026-02-03 21:23:48 +00:00
[PR #1558] [CLOSED] [FEAT] Add timing module in lib_ccxr
#2277
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/CCExtractor/ccextractor/pull/1558
Author: @elbertronnie
Created: 8/27/2023
Status: ❌ Closed
Base:
master← Head:add-timing-module📝 Commits (7)
8014d8bcreate lib_ccxr and libccxr_exports8f348feadd log modulef4d4d7cadd common constants module49cdd1fadd time units module6db74b7Merge branch 'add-log-module'4e44c55Merge branch 'add-constants-module'cea527dadd timing module📊 Changes
21 files changed (+3550 additions, -234 deletions)
View changed files
📝
.gitignore(+2 -1)📝
src/lib_ccx/ccx_common_timing.c(+48 -0)📝
src/lib_ccx/lib_ccx.c(+8 -0)📝
src/lib_ccx/utility.c(+33 -0)📝
src/rust/Cargo.lock(+175 -61)📝
src/rust/Cargo.toml(+1 -0)📝
src/rust/build.rs(+10 -1)➕
src/rust/lib_ccxr/Cargo.lock(+179 -0)➕
src/rust/lib_ccxr/Cargo.toml(+21 -0)➕
src/rust/lib_ccxr/src/common/constants.rs(+415 -0)➕
src/rust/lib_ccxr/src/common/mod.rs(+21 -0)➕
src/rust/lib_ccxr/src/lib.rs(+2 -0)➕
src/rust/lib_ccxr/src/util/log.rs(+546 -0)➕
src/rust/lib_ccxr/src/util/mod.rs(+4 -0)➕
src/rust/lib_ccxr/src/util/time/c_functions.rs(+93 -0)➕
src/rust/lib_ccxr/src/util/time/mod.rs(+45 -0)➕
src/rust/lib_ccxr/src/util/time/timing.rs(+563 -0)➕
src/rust/lib_ccxr/src/util/time/units.rs(+634 -0)📝
src/rust/src/lib.rs(+185 -171)➕
src/rust/src/libccxr_exports/mod.rs(+36 -0)...and 1 more files
📄 Description
In raising this pull request, I confirm the following (please check boxes):
My familiarity with the project is as follows (check one):
This is an attempt to split #1495 into multiple independant PRs. Dependant on #1551, #1556, #1553 and #1555.
This PR adds types and functions to store and calculate timing related information during the decoding process. The functions are integrated into C.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.