mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2024-12-24 11:53:25 +00:00
0.74
This commit is contained in:
parent
84db812769
commit
18f781d099
@ -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
|
||||||
-----------
|
-----------
|
||||||
|
@ -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"
|
||||||
|
@ -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!");
|
||||||
|
|
||||||
|
@ -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));
|
||||||
|
Loading…
Reference in New Issue
Block a user