diff --git a/docs/CHANGES.TXT b/docs/CHANGES.TXT index c0a9ca8c..db9511f6 100644 --- a/docs/CHANGES.TXT +++ b/docs/CHANGES.TXT @@ -6,6 +6,7 @@ - Added nobom parameter, for when files are processed by tools that can't handle the BOM. If using this, files might be not readable under windows. - Segfault fix when no input files were given - No more bin output when sending to server + possibility to send TT to server for processing +- Windows: Added the Microsoft redistributable MSVCR120.DLL to both the installation package and the application zip. 0.73 - GSOC ----------- diff --git a/src/ccextractor.h b/src/ccextractor.h index 4bbd6d11..9846b593 100644 --- a/src/ccextractor.h +++ b/src/ccextractor.h @@ -1,7 +1,7 @@ #ifndef CCX_CCEXTRACTOR_H #define CCX_CCEXTRACTOR_H -#define VERSION "0.73" +#define VERSION "0.74" // Load common includes and constants for library usage #include "ccx_common_platform.h" diff --git a/src/general_loop.c b/src/general_loop.c index 1d1dbe61..aed56f8d 100644 --- a/src/general_loop.c +++ b/src/general_loop.c @@ -661,7 +661,7 @@ void general_loop(void *enc_ctx) else if (ccx_bufferdatatype == CCX_H264) // H.264 data from TS file { got = process_avc(buffer, inbuf,&dec_sub); - } + } else fatal(CCX_COMMON_EXIT_BUG_BUG, "Unknown data type!"); diff --git a/src/networking.c b/src/networking.c index 6680b277..44bcbe2e 100644 --- a/src/networking.c +++ b/src/networking.c @@ -581,7 +581,7 @@ int tcp_bind(const char *port, int *family) if (bind(sockfd, p->ai_addr, p->ai_addrlen) < 0) { #if _WIN32 - wprintf(L"bind() eror: %ld\n", WSAGetLastError()); + wprintf(L"bind() error: %ld\n", WSAGetLastError()); closesocket(sockfd); #else mprint("bind() error: %s\n", strerror(errno));