mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2025-01-14 06:00:59 +00:00
[FIX] Fixed a minor reportng stats bug (#1054)
* Fixed a minor bug * Update CHANGES.TXT * Update CHANGES.TXT
This commit is contained in:
parent
7b4bf0b15a
commit
5a8758fdd2
@ -5,6 +5,7 @@
|
|||||||
- Fix: Update UTF8Proc to 2.2.0
|
- Fix: Update UTF8Proc to 2.2.0
|
||||||
- Fix: Warn instead of fatal when a 0xFF marker is missing
|
- Fix: Warn instead of fatal when a 0xFF marker is missing
|
||||||
- Fix: Segfault in general_loop.c due to null pointer dereference (case of no encoder)
|
- Fix: Segfault in general_loop.c due to null pointer dereference (case of no encoder)
|
||||||
|
- Fix: Enable printing hdtv stats to console.
|
||||||
- Fix: Many typos in comments and output messages
|
- Fix: Many typos in comments and output messages
|
||||||
- Fix: Ignore Visual Studio temporary project files
|
- Fix: Ignore Visual Studio temporary project files
|
||||||
|
|
||||||
|
@ -282,7 +282,7 @@ int api_start(struct ccx_s_options api_options)
|
|||||||
total_frames_count, current_fps);
|
total_frames_count, current_fps);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ctx->stat_hdtv)
|
if (dec_ctx->stat_hdtv)
|
||||||
{
|
{
|
||||||
mprint ("\rCC type 0: %d (%s)\n", dec_ctx->cc_stats[0], cc_types[0]);
|
mprint ("\rCC type 0: %d (%s)\n", dec_ctx->cc_stats[0], cc_types[0]);
|
||||||
mprint ("CC type 1: %d (%s)\n", dec_ctx->cc_stats[1], cc_types[1]);
|
mprint ("CC type 1: %d (%s)\n", dec_ctx->cc_stats[1], cc_types[1]);
|
||||||
|
Loading…
Reference in New Issue
Block a user