[PR #1447] [CLOSED] [WIP] 608 Decoder in Rust #2191

Open
opened 2026-01-29 17:20:46 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/CCExtractor/ccextractor/pull/1447
Author: @voidash
Created: 7/28/2022
Status: Closed

Base: masterHead: 608


📝 Commits (10+)

  • 0386017 scc file support for 708 decoder attempt 1
  • fb5dbe2 replicate the changes made in rust code in C codebase for scc support
  • e449557 add clear caption and fix timestamps being repeated for SCC
  • 54a0351 Add SCC support for CEA-708 Decoder (#1426)
  • ea0ece3 Add SCC support for CEA-708 Decoder (#1432)
  • 1e35aa7 Add SCC support for CEA-708 Decoder (#1432)
  • b6bbee5 add SCC header on Rust portion
  • 8707917 Merge branch 'CCExtractor:master' into master
  • 45f7e40 WIP: 608 Decoder. Process608() function and some XDS function with entry point defined on ccx_decoder_608
  • 3edf723 - Refactoring of process608 function

📊 Changes

22 files changed (+1665 additions, -26 deletions)

View changed files

📝 docs/CHANGES.TXT (+1 -0)
📝 src/lib_ccx/ccx_common_timing.c (+22 -0)
📝 src/lib_ccx/ccx_common_timing.h (+11 -11)
📝 src/lib_ccx/ccx_decoders_608.c (+3 -0)
📝 src/lib_ccx/ccx_decoders_608.h (+4 -0)
📝 src/lib_ccx/ccx_decoders_708_output.c (+91 -4)
📝 src/lib_ccx/ccx_decoders_708_output.h (+6 -5)
📝 src/lib_ccx/ccx_encoders_structs.h (+0 -1)
📝 src/rust/Cargo.lock (+1 -0)
📝 src/rust/Cargo.toml (+1 -0)
📝 src/rust/build.rs (+7 -2)
📝 src/rust/src/decoder/timing.rs (+9 -0)
📝 src/rust/src/decoder/tv_screen.rs (+70 -2)
src/rust/src/decoder608/constants.rs (+52 -0)
src/rust/src/decoder608/context.rs (+976 -0)
src/rust/src/decoder608/encoder.rs (+1 -0)
src/rust/src/decoder608/mod.rs (+229 -0)
src/rust/src/decoder608/timing.rs (+25 -0)
src/rust/src/decoder608/utility.rs (+19 -0)
src/rust/src/decoder608/xds.rs (+131 -0)

...and 2 more files

📄 Description

In raising this pull request, I confirm the following (please check boxes):

  • I have read and understood the contributors guide.
  • I have checked that another pull request for this purpose does not exist.
  • I have considered, and confirmed that this submission will be valuable to others.
  • I accept that this submission may not be used, and the pull request closed at the will of the maintainer.
  • I give this submission freely, and claim no ownership to its content.
  • I have mentioned this change in the changelog.

My familiarity with the project is as follows (check one):

  • I have never used CCExtractor.
  • I have used CCExtractor just a couple of times.
  • I absolutely love CCExtractor, but have not contributed previously.
  • I am an active contributor to CCExtractor.

  • rx_process608() function as a entry point for Rust code on mod.rs
  • Work on XDS ccx_decoders_xds_context on xds.rs
  • work on ccx_decoder_608_context on context.rs.
  • wip dump function on utility.rs
  • constants.rs file for 608 decoder wide constants such as pac2_attributes, 608_rows, 608_width
  • 608 specific timings on timings.rs

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/CCExtractor/ccextractor/pull/1447 **Author:** [@voidash](https://github.com/voidash) **Created:** 7/28/2022 **Status:** ❌ Closed **Base:** `master` ← **Head:** `608` --- ### 📝 Commits (10+) - [`0386017`](https://github.com/CCExtractor/ccextractor/commit/0386017ac01589b7d300085057f82ead3be578c4) scc file support for 708 decoder attempt 1 - [`fb5dbe2`](https://github.com/CCExtractor/ccextractor/commit/fb5dbe29593fb68146ee7deb71270f53f93f0d18) replicate the changes made in rust code in C codebase for scc support - [`e449557`](https://github.com/CCExtractor/ccextractor/commit/e449557c8c6b31b73aa434c81d471818e832f5f8) add clear caption and fix timestamps being repeated for SCC - [`54a0351`](https://github.com/CCExtractor/ccextractor/commit/54a0351f2c4047524751699d502729de7aa57661) Add SCC support for CEA-708 Decoder (#1426) - [`ea0ece3`](https://github.com/CCExtractor/ccextractor/commit/ea0ece32c1848709b7c656062b23a93a30f7ed1c) Add SCC support for CEA-708 Decoder (#1432) - [`1e35aa7`](https://github.com/CCExtractor/ccextractor/commit/1e35aa70a91251394180191ac2b4286378b3d543) Add SCC support for CEA-708 Decoder (#1432) - [`b6bbee5`](https://github.com/CCExtractor/ccextractor/commit/b6bbee5174f7b64538540a011bea47046bdafec8) add SCC header on Rust portion - [`8707917`](https://github.com/CCExtractor/ccextractor/commit/87079171661c53969bdc68d980dca85ddaebaaa9) Merge branch 'CCExtractor:master' into master - [`45f7e40`](https://github.com/CCExtractor/ccextractor/commit/45f7e401b76f885fbf5acb33103ab7203be1c108) WIP: 608 Decoder. Process608() function and some XDS function with entry point defined on ccx_decoder_608 - [`3edf723`](https://github.com/CCExtractor/ccextractor/commit/3edf723171046cd3459d39ecbc9c7ef929768ce0) - Refactoring of process608 function ### 📊 Changes **22 files changed** (+1665 additions, -26 deletions) <details> <summary>View changed files</summary> 📝 `docs/CHANGES.TXT` (+1 -0) 📝 `src/lib_ccx/ccx_common_timing.c` (+22 -0) 📝 `src/lib_ccx/ccx_common_timing.h` (+11 -11) 📝 `src/lib_ccx/ccx_decoders_608.c` (+3 -0) 📝 `src/lib_ccx/ccx_decoders_608.h` (+4 -0) 📝 `src/lib_ccx/ccx_decoders_708_output.c` (+91 -4) 📝 `src/lib_ccx/ccx_decoders_708_output.h` (+6 -5) 📝 `src/lib_ccx/ccx_encoders_structs.h` (+0 -1) 📝 `src/rust/Cargo.lock` (+1 -0) 📝 `src/rust/Cargo.toml` (+1 -0) 📝 `src/rust/build.rs` (+7 -2) 📝 `src/rust/src/decoder/timing.rs` (+9 -0) 📝 `src/rust/src/decoder/tv_screen.rs` (+70 -2) ➕ `src/rust/src/decoder608/constants.rs` (+52 -0) ➕ `src/rust/src/decoder608/context.rs` (+976 -0) ➕ `src/rust/src/decoder608/encoder.rs` (+1 -0) ➕ `src/rust/src/decoder608/mod.rs` (+229 -0) ➕ `src/rust/src/decoder608/timing.rs` (+25 -0) ➕ `src/rust/src/decoder608/utility.rs` (+19 -0) ➕ `src/rust/src/decoder608/xds.rs` (+131 -0) _...and 2 more files_ </details> ### 📄 Description <!-- Please prefix your pull request with one of the following: **[FEATURE]** **[FIX]** **[IMPROVEMENT]**. --> **In raising this pull request, I confirm the following (please check boxes):** - [x] I have read and understood the [contributors guide](https://github.com/CCExtractor/ccextractor/blob/master/.github/CONTRIBUTING.md). - [x] I have checked that another pull request for this purpose does not exist. - [x] I have considered, and confirmed that this submission will be valuable to others. - [x] I accept that this submission may not be used, and the pull request closed at the will of the maintainer. - [x] I give this submission freely, and claim no ownership to its content. - [ ] **I have mentioned this change in the [changelog](https://github.com/CCExtractor/ccextractor/blob/master/docs/CHANGES.TXT).** **My familiarity with the project is as follows (check one):** - [ ] I have never used CCExtractor. - [ ] I have used CCExtractor just a couple of times. - [ ] I absolutely love CCExtractor, but have not contributed previously. - [x] I am an active contributor to CCExtractor. --- - rx_process608() function as a entry point for Rust code on mod.rs - Work on XDS `ccx_decoders_xds_context` on xds.rs - work on `ccx_decoder_608_context` on context.rs. - wip dump function on utility.rs - constants.rs file for 608 decoder wide constants such as pac2_attributes, 608_rows, 608_width - 608 specific timings on timings.rs --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 17:20:46 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/ccextractor#2191