[PR #1814] Smptett encoder #2557

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

📋 Pull Request Information

Original PR: https://github.com/CCExtractor/ccextractor/pull/1814
Author: @DhanushVarma-2
Created: 12/14/2025
Status: 🔄 Open

Base: masterHead: smptett-encoder


📝 Commits (10+)

  • e474692 chore: ignore local build artifacts and backups
  • 0499f4f rust: add SMPTE-TT encoder skeleton
  • 0c510c1 rust: add initial SMPTE-TT encoder skeleton
  • 8107a94 rust: add initial SMPTE-TT encoder skeleton
  • 0820e95 Fix SMPTE-TT encoder helper: pointer→slice conversion, XML escaping, borrow fix, unimplemented stubs
  • b71ad40 Complete SMPTE-TT encoder port to Rust
  • 2264917 Add C FFI exports and remove C implementation
  • 8ee175a Exclude smptett C file from CMake builds
  • 554de1b Merge upstream master, resolve .gitignore conflict
  • 02b33ea Revert "Exclude smptett C file from CMake builds"

📊 Changes

9 files changed (+961 additions, -5 deletions)

View changed files

📝 .github/workflows/build_linux.yml (+21 -0)
📝 .github/workflows/build_mac.yml (+8 -0)
📝 .gitignore (+15 -0)
📝 mac/build.command (+1 -1)
📝 src/CMakeLists.txt (+18 -4)
📝 src/lib_ccx/CMakeLists.txt (+3 -0)
src/lib_ccx/ccx_encoders_smptett.c.bak (+411 -0)
📝 src/rust/src/encoder/mod.rs (+2 -0)
src/rust/src/encoder/smptett.rs (+482 -0)

📄 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.

{pull request content here}
I am still working on it


🔄 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/1814 **Author:** [@DhanushVarma-2](https://github.com/DhanushVarma-2) **Created:** 12/14/2025 **Status:** 🔄 Open **Base:** `master` ← **Head:** `smptett-encoder` --- ### 📝 Commits (10+) - [`e474692`](https://github.com/CCExtractor/ccextractor/commit/e474692ff9136d95066dfe1632a21af8cdb55e3a) chore: ignore local build artifacts and backups - [`0499f4f`](https://github.com/CCExtractor/ccextractor/commit/0499f4f43c23549ff9c4b73587b4d8fe450142d4) rust: add SMPTE-TT encoder skeleton - [`0c510c1`](https://github.com/CCExtractor/ccextractor/commit/0c510c1d129b084a96710a15632ce197cd2a89d2) rust: add initial SMPTE-TT encoder skeleton - [`8107a94`](https://github.com/CCExtractor/ccextractor/commit/8107a94190191f12e6ed7d1e5bde532fa756d2bb) rust: add initial SMPTE-TT encoder skeleton - [`0820e95`](https://github.com/CCExtractor/ccextractor/commit/0820e95ded4f01efcc64f1dcaea2b16c66dcafa8) Fix SMPTE-TT encoder helper: pointer→slice conversion, XML escaping, borrow fix, unimplemented stubs - [`b71ad40`](https://github.com/CCExtractor/ccextractor/commit/b71ad400a8e1c89d59a548981afee48f750b1354) Complete SMPTE-TT encoder port to Rust - [`2264917`](https://github.com/CCExtractor/ccextractor/commit/2264917c8ef5184b972ea0bf7031f8ea6491ab55) Add C FFI exports and remove C implementation - [`8ee175a`](https://github.com/CCExtractor/ccextractor/commit/8ee175adca46b9367864bf117192a530dfe11bc6) Exclude smptett C file from CMake builds - [`554de1b`](https://github.com/CCExtractor/ccextractor/commit/554de1b0dac5fb530d9362548775db221f893a9a) Merge upstream master, resolve .gitignore conflict - [`02b33ea`](https://github.com/CCExtractor/ccextractor/commit/02b33ea298a8504748d6801c5df384fcaea3da95) Revert "Exclude smptett C file from CMake builds" ### 📊 Changes **9 files changed** (+961 additions, -5 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/build_linux.yml` (+21 -0) 📝 `.github/workflows/build_mac.yml` (+8 -0) 📝 `.gitignore` (+15 -0) 📝 `mac/build.command` (+1 -1) 📝 `src/CMakeLists.txt` (+18 -4) 📝 `src/lib_ccx/CMakeLists.txt` (+3 -0) ➕ `src/lib_ccx/ccx_encoders_smptett.c.bak` (+411 -0) 📝 `src/rust/src/encoder/mod.rs` (+2 -0) ➕ `src/rust/src/encoder/smptett.rs` (+482 -0) </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):** - [ ] I have read and understood the [contributors guide](https://github.com/CCExtractor/ccextractor/blob/master/.github/CONTRIBUTING.md). - [ ] 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](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. --- {pull request content here} I am still working on it --- <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:22:45 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/ccextractor#2557