This commit is contained in:
cfsmp3 2014-09-24 13:04:26 +02:00
parent 84db812769
commit 18f781d099
4 changed files with 4 additions and 3 deletions

View File

@ -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. - 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 - Segfault fix when no input files were given
- No more bin output when sending to server + possibility to send TT to server for processing - 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 0.73 - GSOC
----------- -----------

View File

@ -1,7 +1,7 @@
#ifndef CCX_CCEXTRACTOR_H #ifndef CCX_CCEXTRACTOR_H
#define CCX_CCEXTRACTOR_H #define CCX_CCEXTRACTOR_H
#define VERSION "0.73" #define VERSION "0.74"
// Load common includes and constants for library usage // Load common includes and constants for library usage
#include "ccx_common_platform.h" #include "ccx_common_platform.h"

View File

@ -661,7 +661,7 @@ void general_loop(void *enc_ctx)
else if (ccx_bufferdatatype == CCX_H264) // H.264 data from TS file else if (ccx_bufferdatatype == CCX_H264) // H.264 data from TS file
{ {
got = process_avc(buffer, inbuf,&dec_sub); got = process_avc(buffer, inbuf,&dec_sub);
} }
else else
fatal(CCX_COMMON_EXIT_BUG_BUG, "Unknown data type!"); fatal(CCX_COMMON_EXIT_BUG_BUG, "Unknown data type!");

View File

@ -581,7 +581,7 @@ int tcp_bind(const char *port, int *family)
if (bind(sockfd, p->ai_addr, p->ai_addrlen) < 0) if (bind(sockfd, p->ai_addr, p->ai_addrlen) < 0)
{ {
#if _WIN32 #if _WIN32
wprintf(L"bind() eror: %ld\n", WSAGetLastError()); wprintf(L"bind() error: %ld\n", WSAGetLastError());
closesocket(sockfd); closesocket(sockfd);
#else #else
mprint("bind() error: %s\n", strerror(errno)); mprint("bind() error: %s\n", strerror(errno));