Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/CHANGES.TXT
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,8 @@
- Fix: CEA-708: Better timing, fixes for missing subtitles
- Fix: timing for direct rollup
- Fix: timing for VOB files with multiple chapters
- Enhanced: -out=report now lists detected Teletext subtitle pages under "Pages With Subtitles" (previously left blank even when pages were detected). Improves analysis for manual page selection use cases.


0.88 (2019-05-21)
-----------------
Expand Down
2 changes: 1 addition & 1 deletion src/lib_ccx/cc_bitstream.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ struct bitstream
// This is meant to store high level syntax errors, i.e a function
// using the bitstream functions found a syntax error.
int error;
// Internal (private) variable - used to store the the bitstream
// Internal (private) variable - used to store the bitstream
// position until it is decided if the bitstream pointer will be
// increased by the calling function, or not.
unsigned char *_i_pos;
Expand Down
2 changes: 1 addition & 1 deletion src/thirdparty/zlib/zlib.h
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,7 @@ ZEXTERN int ZEXPORT deflateParams OF((z_streamp strm,
Then no more input data should be provided before the deflateParams() call.
If this is done, the old level and strategy will be applied to the data
compressed before deflateParams(), and the new level and strategy will be
applied to the the data compressed after deflateParams().
applied to the data compressed after deflateParams().

deflateParams returns Z_OK on success, Z_STREAM_ERROR if the source stream
state was inconsistent or if a parameter was invalid, or Z_BUF_ERROR if
Expand Down
Loading