[PR #216] [MERGED] removing some global and static variable. #1093

Closed
opened 2026-01-29 16:59:12 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/CCExtractor/ccextractor/pull/216
Author: @anshul1912
Created: 8/22/2015
Status: Merged
Merged: 9/1/2015
Merged by: @cfsmp3

Base: masterHead: master


📝 Commits (10+)

  • 3433ed2 removed somestatic variable from avc
  • fcbf113 Merge remote-tracking branch 'upstream/master'
  • da576bf Pass timing in get_fts function
  • 647a91e shifting global variable in context
  • 66f4143 moving global variable of sequence to ctx
  • ad6346f making xds_context and moving global vars
  • 3bdb5f3 remove xds global init
  • b3614f5 dont derefrence global variables
  • 2fe0da3 ignore xds if not selected in transcript
  • 96fd051 pass dec_ctx instead of its channel

📊 Changes

36 files changed (+816 additions, -705 deletions)

View changed files

📝 src/ccextractor.c (+49 -44)
📝 src/gpacmp4/mp4.c (+11 -8)
📝 src/lib_ccx/608_sami.c (+5 -4)
📝 src/lib_ccx/608_smptett.c (+2 -0)
📝 src/lib_ccx/608_srt.c (+2 -2)
📝 src/lib_ccx/avc_functions.c (+65 -56)
📝 src/lib_ccx/avc_functions.h (+17 -0)
📝 src/lib_ccx/ccx_common_timing.c (+33 -30)
📝 src/lib_ccx/ccx_common_timing.h (+8 -7)
📝 src/lib_ccx/ccx_decoders_608.c (+47 -31)
📝 src/lib_ccx/ccx_decoders_608.h (+4 -7)
📝 src/lib_ccx/ccx_decoders_708.c (+15 -15)
📝 src/lib_ccx/ccx_decoders_708.h (+2 -0)
📝 src/lib_ccx/ccx_decoders_common.c (+32 -20)
📝 src/lib_ccx/ccx_decoders_common.h (+2 -4)
📝 src/lib_ccx/ccx_decoders_structs.h (+1 -0)
📝 src/lib_ccx/ccx_decoders_xds.c (+305 -358)
📝 src/lib_ccx/ccx_decoders_xds.h (+6 -9)
📝 src/lib_ccx/ccx_dtvcc.c (+2 -1)
src/lib_ccx/ccx_encoder_xds.c (+95 -0)

...and 16 more files

📄 Description

@ccx-testerbot runtests


🔄 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/216 **Author:** [@anshul1912](https://github.com/anshul1912) **Created:** 8/22/2015 **Status:** ✅ Merged **Merged:** 9/1/2015 **Merged by:** [@cfsmp3](https://github.com/cfsmp3) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (10+) - [`3433ed2`](https://github.com/CCExtractor/ccextractor/commit/3433ed2e5c4e93189adeba4dc12bf6a9181c4f5e) removed somestatic variable from avc - [`fcbf113`](https://github.com/CCExtractor/ccextractor/commit/fcbf1135266cf193d3b12d909ef924893cae12b5) Merge remote-tracking branch 'upstream/master' - [`da576bf`](https://github.com/CCExtractor/ccextractor/commit/da576bff2bb62f4e03aa790c7f14739a4cd4f001) Pass timing in get_fts function - [`647a91e`](https://github.com/CCExtractor/ccextractor/commit/647a91eafad49935a86ed3a7175705102174ac47) shifting global variable in context - [`66f4143`](https://github.com/CCExtractor/ccextractor/commit/66f41438be10d2dbbae59388e2b3c8ee6163e959) moving global variable of sequence to ctx - [`ad6346f`](https://github.com/CCExtractor/ccextractor/commit/ad6346f802ad6e2795cce9351ed0716b5956d130) making xds_context and moving global vars - [`3bdb5f3`](https://github.com/CCExtractor/ccextractor/commit/3bdb5f3863651b6346914a2aa535904b5586a205) remove xds global init - [`b3614f5`](https://github.com/CCExtractor/ccextractor/commit/b3614f592f8d90552e938568c1bff9b4d401c347) dont derefrence global variables - [`2fe0da3`](https://github.com/CCExtractor/ccextractor/commit/2fe0da30bede1679af74589d6058c455cb91f9d4) ignore xds if not selected in transcript - [`96fd051`](https://github.com/CCExtractor/ccextractor/commit/96fd051e012f5f9ced945f1059f20b37c0f4eb40) pass dec_ctx instead of its channel ### 📊 Changes **36 files changed** (+816 additions, -705 deletions) <details> <summary>View changed files</summary> 📝 `src/ccextractor.c` (+49 -44) 📝 `src/gpacmp4/mp4.c` (+11 -8) 📝 `src/lib_ccx/608_sami.c` (+5 -4) 📝 `src/lib_ccx/608_smptett.c` (+2 -0) 📝 `src/lib_ccx/608_srt.c` (+2 -2) 📝 `src/lib_ccx/avc_functions.c` (+65 -56) 📝 `src/lib_ccx/avc_functions.h` (+17 -0) 📝 `src/lib_ccx/ccx_common_timing.c` (+33 -30) 📝 `src/lib_ccx/ccx_common_timing.h` (+8 -7) 📝 `src/lib_ccx/ccx_decoders_608.c` (+47 -31) 📝 `src/lib_ccx/ccx_decoders_608.h` (+4 -7) 📝 `src/lib_ccx/ccx_decoders_708.c` (+15 -15) 📝 `src/lib_ccx/ccx_decoders_708.h` (+2 -0) 📝 `src/lib_ccx/ccx_decoders_common.c` (+32 -20) 📝 `src/lib_ccx/ccx_decoders_common.h` (+2 -4) 📝 `src/lib_ccx/ccx_decoders_structs.h` (+1 -0) 📝 `src/lib_ccx/ccx_decoders_xds.c` (+305 -358) 📝 `src/lib_ccx/ccx_decoders_xds.h` (+6 -9) 📝 `src/lib_ccx/ccx_dtvcc.c` (+2 -1) ➕ `src/lib_ccx/ccx_encoder_xds.c` (+95 -0) _...and 16 more files_ </details> ### 📄 Description @ccx-testerbot runtests --- <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 16:59:12 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/ccextractor#1093