[PR #227] [MERGED] moved buffered_read to inline function #1104

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

📋 Pull Request Information

Original PR: https://github.com/CCExtractor/ccextractor/pull/227
Author: @anshul1912
Created: 9/15/2015
Status: Merged
Merged: 9/18/2015
Merged by: @cfsmp3

Base: masterHead: master


📝 Commits (10+)

  • 66408fc moved buffered_read to inline function
  • ad5b917 Compile code in vs2013
  • 7514886 change from int to LLONG
  • 940bee3 Merge remote-tracking branch 'upstream/master'
  • 6bfe3b3 Merge branch 'master' of github.com:anshul1912/ccextractor
  • 1e2237f saving missing result
  • 4204b78 remove dangling declaration
  • e2b0534 remove dead code
  • 69d077d Adding space and reindenting
  • 962357e Adding comments

📊 Changes

27 files changed (+510 additions, -374 deletions)

View changed files

📝 src/lib_ccx/activity.h (+1 -0)
📝 src/lib_ccx/asf_functions.c (+33 -31)
📝 src/lib_ccx/ccx_decoders_608.c (+0 -1)
📝 src/lib_ccx/ccx_demuxer.h (+4 -3)
📝 src/lib_ccx/ccx_encoders_common.c (+2 -2)
📝 src/lib_ccx/ccx_encoders_sami.c (+0 -0)
📝 src/lib_ccx/ccx_encoders_smptett.c (+0 -0)
📝 src/lib_ccx/ccx_encoders_spupng.c (+1 -1)
📝 src/lib_ccx/ccx_encoders_spupng.h (+0 -0)
📝 src/lib_ccx/ccx_encoders_srt.c (+0 -0)
📝 src/lib_ccx/ccx_encoders_webvtt.c (+0 -0)
📝 src/lib_ccx/ccx_encoders_xds.c (+0 -0)
📝 src/lib_ccx/ccx_encoders_xds.h (+0 -0)
src/lib_ccx/file_buffer.h (+92 -0)
📝 src/lib_ccx/file_functions.c (+144 -101)
📝 src/lib_ccx/general_loop.c (+18 -15)
📝 src/lib_ccx/lib_ccx.h (+0 -29)
📝 src/lib_ccx/myth.c (+54 -85)
📝 src/lib_ccx/networking.c (+25 -13)
📝 src/lib_ccx/stream_functions.c (+6 -3)

...and 7 more files

📄 Description

Signed-off-by: Anshul Maheshwari er.anshul.maheshwari@gmail.com


🔄 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/227 **Author:** [@anshul1912](https://github.com/anshul1912) **Created:** 9/15/2015 **Status:** ✅ Merged **Merged:** 9/18/2015 **Merged by:** [@cfsmp3](https://github.com/cfsmp3) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (10+) - [`66408fc`](https://github.com/CCExtractor/ccextractor/commit/66408fc95074adc8a8548d2a65edac25c12f0aae) moved buffered_read to inline function - [`ad5b917`](https://github.com/CCExtractor/ccextractor/commit/ad5b917f3b0ca36f203519830e241bdaf98f32d0) Compile code in vs2013 - [`7514886`](https://github.com/CCExtractor/ccextractor/commit/75148861991700ecc7e2258f7017973e5287e7f4) change from int to LLONG - [`940bee3`](https://github.com/CCExtractor/ccextractor/commit/940bee33a4cdc07a7d1cc8bd6a71ec6142981e26) Merge remote-tracking branch 'upstream/master' - [`6bfe3b3`](https://github.com/CCExtractor/ccextractor/commit/6bfe3b3f864f0332ba8a3a94388a2366226bf026) Merge branch 'master' of github.com:anshul1912/ccextractor - [`1e2237f`](https://github.com/CCExtractor/ccextractor/commit/1e2237f7ec7dd3c7c6fd3bdc3b2671273ee9a661) saving missing result - [`4204b78`](https://github.com/CCExtractor/ccextractor/commit/4204b7878dda0ed90f720d9dfcec65f909c8be78) remove dangling declaration - [`e2b0534`](https://github.com/CCExtractor/ccextractor/commit/e2b0534374522cb3246be7b4c57b44ba8688ac3b) remove dead code - [`69d077d`](https://github.com/CCExtractor/ccextractor/commit/69d077df9ea1bbcd088c6c510a6d8cf513b113ee) Adding space and reindenting - [`962357e`](https://github.com/CCExtractor/ccextractor/commit/962357ed0f269eba938f0098e3d1f1130975ea16) Adding comments ### 📊 Changes **27 files changed** (+510 additions, -374 deletions) <details> <summary>View changed files</summary> 📝 `src/lib_ccx/activity.h` (+1 -0) 📝 `src/lib_ccx/asf_functions.c` (+33 -31) 📝 `src/lib_ccx/ccx_decoders_608.c` (+0 -1) 📝 `src/lib_ccx/ccx_demuxer.h` (+4 -3) 📝 `src/lib_ccx/ccx_encoders_common.c` (+2 -2) 📝 `src/lib_ccx/ccx_encoders_sami.c` (+0 -0) 📝 `src/lib_ccx/ccx_encoders_smptett.c` (+0 -0) 📝 `src/lib_ccx/ccx_encoders_spupng.c` (+1 -1) 📝 `src/lib_ccx/ccx_encoders_spupng.h` (+0 -0) 📝 `src/lib_ccx/ccx_encoders_srt.c` (+0 -0) 📝 `src/lib_ccx/ccx_encoders_webvtt.c` (+0 -0) 📝 `src/lib_ccx/ccx_encoders_xds.c` (+0 -0) 📝 `src/lib_ccx/ccx_encoders_xds.h` (+0 -0) ➕ `src/lib_ccx/file_buffer.h` (+92 -0) 📝 `src/lib_ccx/file_functions.c` (+144 -101) 📝 `src/lib_ccx/general_loop.c` (+18 -15) 📝 `src/lib_ccx/lib_ccx.h` (+0 -29) 📝 `src/lib_ccx/myth.c` (+54 -85) 📝 `src/lib_ccx/networking.c` (+25 -13) 📝 `src/lib_ccx/stream_functions.c` (+6 -3) _...and 7 more files_ </details> ### 📄 Description Signed-off-by: Anshul Maheshwari er.anshul.maheshwari@gmail.com --- <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:19 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/ccextractor#1104