diff --git a/docs/CHANGES.TXT b/docs/CHANGES.TXT index d6765ffb2..f5d9ba427 100644 --- a/docs/CHANGES.TXT +++ b/docs/CHANGES.TXT @@ -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) ----------------- diff --git a/src/lib_ccx/cc_bitstream.h b/src/lib_ccx/cc_bitstream.h index 8b5ea697f..70742338a 100644 --- a/src/lib_ccx/cc_bitstream.h +++ b/src/lib_ccx/cc_bitstream.h @@ -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; diff --git a/src/thirdparty/zlib/zlib.h b/src/thirdparty/zlib/zlib.h index f09cdaf1e..dcc31158a 100644 --- a/src/thirdparty/zlib/zlib.h +++ b/src/thirdparty/zlib/zlib.h @@ -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