[PR #1141] [CLOSED] Update ZVBI Package #1919

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

📋 Pull Request Information

Original PR: https://github.com/CCExtractor/ccextractor/pull/1141
Author: @drepram
Created: 12/9/2019
Status: Closed

Base: masterHead: zvbi-update


📝 Commits (9)

📊 Changes

103 files changed (+65799 additions, -120 deletions)

View changed files

📝 docs/CHANGES.TXT (+1 -0)
src/zvbi/_videodev.h (+163 -0)
src/zvbi/_videodev2.h (+56 -0)
src/zvbi/_videodev2k.h (+1327 -0)
📝 src/zvbi/bcd.h (+13 -6)
📝 src/zvbi/bit_slicer.c (+177 -37)
src/zvbi/cache-priv.h (+480 -0)
src/zvbi/cache.c (+1913 -0)
src/zvbi/cache.h (+617 -0)
src/zvbi/caption.c (+1610 -0)
src/zvbi/cc.h (+114 -0)
src/zvbi/cc608_decoder.c (+2583 -0)
src/zvbi/cc608_decoder.h (+131 -0)
src/zvbi/chains.c (+614 -0)
src/zvbi/conv.c (+1249 -0)
src/zvbi/conv.h (+137 -0)
📝 src/zvbi/decoder.c (+41 -9)
src/zvbi/decoder.h (+415 -0)
src/zvbi/dlist.h (+424 -0)
src/zvbi/dvb.h (+104 -0)

...and 80 more files

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

I've updated the ZVBI package to the 0.2.35 version.


🔄 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/1141 **Author:** [@drepram](https://github.com/drepram) **Created:** 12/9/2019 **Status:** ❌ Closed **Base:** `master` ← **Head:** `zvbi-update` --- ### 📝 Commits (9) - [`a3a3e69`](https://github.com/CCExtractor/ccextractor/commit/a3a3e69b3efe36e077e9f8c28973e676c38acc8f) Update zvbi to 0.2.35 - [`2566379`](https://github.com/CCExtractor/ccextractor/commit/2566379a6846b5a00779ce6c6bd2f3610a896413) Update changelog - [`7d313b8`](https://github.com/CCExtractor/ccextractor/commit/7d313b82e6d9db4b531dd90af6d23e96a2636faa) Remove unnecessary codes - [`76247c4`](https://github.com/CCExtractor/ccextractor/commit/76247c4cbe446afe981a8f504290f1bbc6f8154e) Add version.h - [`a97a68f`](https://github.com/CCExtractor/ccextractor/commit/a97a68f3dd027abec41dec8ecc440b904554a22a) add decoder.h - [`0f74644`](https://github.com/CCExtractor/ccextractor/commit/0f7464474e28d5b8c6b7dc4bf03a7364b0c1c32e) Going all in cause nothing seems to pass the test - [`59bb7f8`](https://github.com/CCExtractor/ccextractor/commit/59bb7f84bb45a7bf0fa1cdced2bcedc15315bb09) Merge branch 'master' into zvbi-update - [`6334173`](https://github.com/CCExtractor/ccextractor/commit/63341736ceb6bd52189b9077e8d7917aa8d43098) Add zvbi_decoder.h - [`3742cd6`](https://github.com/CCExtractor/ccextractor/commit/3742cd6a32d2874c3342359826568dee055f79cf) Merge branch 'zvbi-update' of https://github.com/drepram/ccextractor into zvbi-update ### 📊 Changes **103 files changed** (+65799 additions, -120 deletions) <details> <summary>View changed files</summary> 📝 `docs/CHANGES.TXT` (+1 -0) ➕ `src/zvbi/_videodev.h` (+163 -0) ➕ `src/zvbi/_videodev2.h` (+56 -0) ➕ `src/zvbi/_videodev2k.h` (+1327 -0) 📝 `src/zvbi/bcd.h` (+13 -6) 📝 `src/zvbi/bit_slicer.c` (+177 -37) ➕ `src/zvbi/cache-priv.h` (+480 -0) ➕ `src/zvbi/cache.c` (+1913 -0) ➕ `src/zvbi/cache.h` (+617 -0) ➕ `src/zvbi/caption.c` (+1610 -0) ➕ `src/zvbi/cc.h` (+114 -0) ➕ `src/zvbi/cc608_decoder.c` (+2583 -0) ➕ `src/zvbi/cc608_decoder.h` (+131 -0) ➕ `src/zvbi/chains.c` (+614 -0) ➕ `src/zvbi/conv.c` (+1249 -0) ➕ `src/zvbi/conv.h` (+137 -0) 📝 `src/zvbi/decoder.c` (+41 -9) ➕ `src/zvbi/decoder.h` (+415 -0) ➕ `src/zvbi/dlist.h` (+424 -0) ➕ `src/zvbi/dvb.h` (+104 -0) _...and 80 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. - [x] **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):** - [x] 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. --- I've updated the ZVBI package to the 0.2.35 version. --- <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:19:15 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/ccextractor#1919