[PR #1368] [MERGED] Rust updates: Added srt writer #2143

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

📋 Pull Request Information

Original PR: https://github.com/CCExtractor/ccextractor/pull/1368
Author: @PunitLodha
Created: 8/3/2021
Status: Merged
Merged: 8/3/2021
Merged by: @cfsmp3

Base: masterHead: rust_updates


📝 Commits (5)

📊 Changes

11 files changed (+448 additions, -23 deletions)

View changed files

📝 src/lib_ccx/ccx_decoders_708_output.c (+13 -0)
📝 src/lib_ccx/ccx_encoders_common.c (+8 -0)
📝 src/lib_ccx/ccx_encoders_common.h (+6 -0)
📝 src/rust/build.rs (+1 -0)
📝 src/rust/src/decoder/mod.rs (+9 -1)
src/rust/src/decoder/output.rs (+80 -0)
📝 src/rust/src/decoder/service_decoder.rs (+10 -2)
📝 src/rust/src/decoder/timing.rs (+1 -1)
📝 src/rust/src/decoder/tv_screen.rs (+274 -3)
📝 src/rust/src/decoder/window.rs (+28 -16)
📝 src/rust/src/lib.rs (+18 -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.

Added Writer for srt files


🔄 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/1368 **Author:** [@PunitLodha](https://github.com/PunitLodha) **Created:** 8/3/2021 **Status:** ✅ Merged **Merged:** 8/3/2021 **Merged by:** [@cfsmp3](https://github.com/cfsmp3) **Base:** `master` ← **Head:** `rust_updates` --- ### 📝 Commits (5) - [`1033c80`](https://github.com/CCExtractor/ccextractor/commit/1033c80689a73e438924aed96a9ac8d1abd9aeb3) pass -DENABLE_RUST to clang - [`7e0fc48`](https://github.com/CCExtractor/ccextractor/commit/7e0fc48c3bbf6b7cd4759f9c1d2ba59f8ab9391b) impl Default - [`1a51553`](https://github.com/CCExtractor/ccextractor/commit/1a51553688d756d65f42b682e72fd0b3b501b477) Update time str format - [`17f2406`](https://github.com/CCExtractor/ccextractor/commit/17f24063bb81f7a3336fea249b03e5aabf15ad30) Add SRT writer - [`020f81a`](https://github.com/CCExtractor/ccextractor/commit/020f81a929ac701022c65c9419b62e0f6746c1f2) fmt ### 📊 Changes **11 files changed** (+448 additions, -23 deletions) <details> <summary>View changed files</summary> 📝 `src/lib_ccx/ccx_decoders_708_output.c` (+13 -0) 📝 `src/lib_ccx/ccx_encoders_common.c` (+8 -0) 📝 `src/lib_ccx/ccx_encoders_common.h` (+6 -0) 📝 `src/rust/build.rs` (+1 -0) 📝 `src/rust/src/decoder/mod.rs` (+9 -1) ➕ `src/rust/src/decoder/output.rs` (+80 -0) 📝 `src/rust/src/decoder/service_decoder.rs` (+10 -2) 📝 `src/rust/src/decoder/timing.rs` (+1 -1) 📝 `src/rust/src/decoder/tv_screen.rs` (+274 -3) 📝 `src/rust/src/decoder/window.rs` (+28 -16) 📝 `src/rust/src/lib.rs` (+18 -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):** - [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. Added Writer for srt files --- <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:30 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/ccextractor#2143