Add version info in all standalone plugins

This commit is contained in:
bossiel 2013-07-28 04:32:17 +00:00
parent 02ee6ee90e
commit 539c048866
27 changed files with 663 additions and 74 deletions

View File

@ -53,8 +53,8 @@ END
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,0,0,835
PRODUCTVERSION 2,0,0,835
FILEVERSION 2,0,0,962
PRODUCTVERSION 2,0,0,962
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
@ -71,12 +71,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Doubango telecom"
VALUE "FileDescription", "Doubango IMS Framework"
VALUE "FileVersion", "2.0.0.835"
VALUE "FileVersion", "2.0.0.962"
VALUE "InternalName", "tinywrap.dll"
VALUE "LegalCopyright", "(c) 2010-2013 Doubango Telecom. All rights reserved."
VALUE "OriginalFilename", "tinywrap.dll"
VALUE "ProductName", "Doubango IMS Framework"
VALUE "ProductVersion", "2.0.0.835"
VALUE "ProductVersion", "2.0.0.962"
END
END
BLOCK "VarFileInfo"

View File

@ -214,6 +214,10 @@
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
>
<File
RelativePath=".\version.rc"
>
</File>
</Filter>
</Files>
<Globals>

View File

@ -347,7 +347,8 @@ static tsk_size_t cuda_codec_h264_decode(tmedia_codec_t* self, const void* in_da
return 0;
}
if(!self->opened || !h264->encoder.pInst /*|| !h264->decoder.pInst->IsReady()*/){
if(!self->opened || !h264->encoder.pInst)
{
TSK_DEBUG_ERROR("Decoder not opened or not ready");
return 0;
}
@ -355,7 +356,8 @@ static tsk_size_t cuda_codec_h264_decode(tmedia_codec_t* self, const void* in_da
HRESULT hr = S_OK;
/* Packet lost? */
if((h264->decoder.last_seq + 1) != rtp_hdr->seq_num && h264->decoder.last_seq){
if((h264->decoder.last_seq + 1) != rtp_hdr->seq_num && h264->decoder.last_seq)
{
TSK_DEBUG_INFO("[H.264] Packet loss, seq_num=%d", (h264->decoder.last_seq + 1));
}
h264->decoder.last_seq = rtp_hdr->seq_num;
@ -368,7 +370,8 @@ static tsk_size_t cuda_codec_h264_decode(tmedia_codec_t* self, const void* in_da
|F|NRI| Type |
+---------------+
*/
if(*((uint8_t*)in_data) & 0x80){
if(*((uint8_t*)in_data) & 0x80)
{
TSK_DEBUG_WARN("F=1");
/* reset accumulator */
h264->decoder.accumulator = 0;
@ -376,7 +379,8 @@ static tsk_size_t cuda_codec_h264_decode(tmedia_codec_t* self, const void* in_da
}
/* get payload */
if((ret = tdav_codec_h264_get_pay(in_data, in_size, (const void**)&pay_ptr, &pay_size, &append_scp)) || !pay_ptr || !pay_size){
if((ret = tdav_codec_h264_get_pay(in_data, in_size, (const void**)&pay_ptr, &pay_size, &append_scp)) || !pay_ptr || !pay_size)
{
TSK_DEBUG_ERROR("Depayloader failed to get H.264 content");
return 0;
}
@ -386,24 +390,30 @@ static tsk_size_t cuda_codec_h264_decode(tmedia_codec_t* self, const void* in_da
sps_or_pps = append_scp && pay_ptr && ((pay_ptr[0] & 0x1F) == 7 || (pay_ptr[0] & 0x1F) == 8);
// start-accumulator
if(!h264->decoder.accumulator){
if(size_to_copy > xmax_size){
if(!h264->decoder.accumulator)
{
if(size_to_copy > xmax_size)
{
TSK_DEBUG_ERROR("%u too big to contain valid encoded data. xmax_size=%u", size_to_copy, xmax_size);
return 0;
}
if(!(h264->decoder.accumulator = tsk_calloc(size_to_copy, sizeof(uint8_t)))){
if(!(h264->decoder.accumulator = tsk_calloc(size_to_copy, sizeof(uint8_t))))
{
TSK_DEBUG_ERROR("Failed to allocated new buffer");
return 0;
}
h264->decoder.accumulator_size = size_to_copy;
}
if((h264->decoder.accumulator_pos + size_to_copy) >= xmax_size){
if((h264->decoder.accumulator_pos + size_to_copy) >= xmax_size)
{
TSK_DEBUG_ERROR("BufferOverflow");
h264->decoder.accumulator_pos = 0;
return 0;
}
if((h264->decoder.accumulator_pos + size_to_copy) > h264->decoder.accumulator_size){
if(!(h264->decoder.accumulator = tsk_realloc(h264->decoder.accumulator, (h264->decoder.accumulator_pos + size_to_copy)))){
if((h264->decoder.accumulator_pos + size_to_copy) > h264->decoder.accumulator_size)
{
if(!(h264->decoder.accumulator = tsk_realloc(h264->decoder.accumulator, (h264->decoder.accumulator_pos + size_to_copy))))
{
TSK_DEBUG_ERROR("Failed to reallocated new buffer");
h264->decoder.accumulator_pos = 0;
h264->decoder.accumulator_size = 0;
@ -412,7 +422,8 @@ static tsk_size_t cuda_codec_h264_decode(tmedia_codec_t* self, const void* in_da
h264->decoder.accumulator_size = (h264->decoder.accumulator_pos + size_to_copy);
}
if(append_scp){
if(append_scp)
{
memcpy(&((uint8_t*)h264->decoder.accumulator)[h264->decoder.accumulator_pos], H264_START_CODE_PREFIX, start_code_prefix_size);
h264->decoder.accumulator_pos += start_code_prefix_size;
}
@ -420,6 +431,7 @@ static tsk_size_t cuda_codec_h264_decode(tmedia_codec_t* self, const void* in_da
h264->decoder.accumulator_pos += pay_size;
// end-accumulator
if(sps_or_pps)
{
// http://libav-users.943685.n4.nabble.com/Decode-H264-streams-how-to-fill-AVCodecContext-from-SPS-PPS-td2484472.html
@ -723,7 +735,7 @@ int cuda_codec_h264_open_encoder(cuda_codec_h264_t* self)
self->encoder.ctxParams.iPictureType = (int)FRAME_PICTURE;
self->encoder.ctxParams.Fieldmode = MODE_FRAME;
self->encoder.ctxParams.Presets = (NVVE_PRESETS_TARGET)-1;//Should be iPod, Zune ...
self->encoder.ctxParams.iP_Interval = 1;
// self->encoder.ctxParams.iP_Interval = 1;
self->encoder.ctxParams.iAspectRatio[0] = 1;
self->encoder.ctxParams.iAspectRatio[1] = 1;
self->encoder.ctxParams.iAspectRatio[2] = 0;

View File

@ -0,0 +1,102 @@
// Microsoft Visual C++ generated resource script.
//
// #include "resource.h"
#define APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 2 resource.
//
#include "afxres.h"
/////////////////////////////////////////////////////////////////////////////
#undef APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
// English (U.S.) resources
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
#ifdef _WIN32
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
#pragma code_page(1252)
#endif //_WIN32
#ifdef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// TEXTINCLUDE
//
1 TEXTINCLUDE
BEGIN
"resource.h\0"
END
2 TEXTINCLUDE
BEGIN
"#include ""afxres.h""\r\n"
"\0"
END
3 TEXTINCLUDE
BEGIN
"\r\n"
"\0"
END
#endif // APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// Version
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,0,0,962
PRODUCTVERSION 2,0,0,962
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
#else
FILEFLAGS 0x0L
#endif
FILEOS 0x4L
FILETYPE 0x2L
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "CompanyName", "Doubango Telecom"
VALUE "FileDescription", "Doubango IMS Framework NVIDIA CUDA Plugin"
VALUE "FileVersion", "2.0.0.962"
VALUE "InternalName", "pluginCUDA.dll"
VALUE "LegalCopyright", "(c) 2010-2013 Doubango Telecom. All rights reserved."
VALUE "OriginalFilename", "pluginCUDA.dll"
VALUE "ProductName", "Doubango IMS Framework NVIDIA CUDA Plugin"
VALUE "ProductVersion", "2.0.0.962"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
END
#endif // English (U.S.) resources
/////////////////////////////////////////////////////////////////////////////
#ifndef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 3 resource.
//
/////////////////////////////////////////////////////////////////////////////
#endif // not APSTUDIO_INVOKED

View File

@ -333,6 +333,14 @@
</File>
</Filter>
</Filter>
<Filter
Name="Resource Files"
>
<File
RelativePath=".\version.rc"
>
</File>
</Filter>
</Files>
<Globals>
</Globals>

View File

@ -0,0 +1,102 @@
// Microsoft Visual C++ generated resource script.
//
// #include "resource.h"
#define APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 2 resource.
//
#include "afxres.h"
/////////////////////////////////////////////////////////////////////////////
#undef APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
// English (U.S.) resources
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
#ifdef _WIN32
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
#pragma code_page(1252)
#endif //_WIN32
#ifdef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// TEXTINCLUDE
//
1 TEXTINCLUDE
BEGIN
"resource.h\0"
END
2 TEXTINCLUDE
BEGIN
"#include ""afxres.h""\r\n"
"\0"
END
3 TEXTINCLUDE
BEGIN
"\r\n"
"\0"
END
#endif // APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// Version
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,0,0,962
PRODUCTVERSION 2,0,0,962
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
#else
FILEFLAGS 0x0L
#endif
FILEOS 0x4L
FILETYPE 0x2L
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "CompanyName", "Doubango Telecom"
VALUE "FileDescription", "Doubango IMS Framework DirectShow Plugin"
VALUE "FileVersion", "2.0.0.962"
VALUE "InternalName", "pluginDirectShow.dll"
VALUE "LegalCopyright", "(c) 2010-2013 Doubango Telecom. All rights reserved."
VALUE "OriginalFilename", "pluginDirectShow.dll"
VALUE "ProductName", "Doubango IMS Framework DirectShow Plugin"
VALUE "ProductVersion", "2.0.0.962"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
END
#endif // English (U.S.) resources
/////////////////////////////////////////////////////////////////////////////
#ifndef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 3 resource.
//
/////////////////////////////////////////////////////////////////////////////
#endif // not APSTUDIO_INVOKED

View File

@ -216,6 +216,10 @@
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
>
<File
RelativePath=".\version.rc"
>
</File>
</Filter>
</Files>
<Globals>

View File

@ -0,0 +1,102 @@
// Microsoft Visual C++ generated resource script.
//
// #include "resource.h"
#define APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 2 resource.
//
#include "afxres.h"
/////////////////////////////////////////////////////////////////////////////
#undef APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
// English (U.S.) resources
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
#ifdef _WIN32
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
#pragma code_page(1252)
#endif //_WIN32
#ifdef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// TEXTINCLUDE
//
1 TEXTINCLUDE
BEGIN
"resource.h\0"
END
2 TEXTINCLUDE
BEGIN
"#include ""afxres.h""\r\n"
"\0"
END
3 TEXTINCLUDE
BEGIN
"\r\n"
"\0"
END
#endif // APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// Version
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,0,0,962
PRODUCTVERSION 2,0,0,962
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
#else
FILEFLAGS 0x0L
#endif
FILEOS 0x4L
FILETYPE 0x2L
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "CompanyName", "Doubango Telecom"
VALUE "FileDescription", "Doubango IMS Framework WASAPI Plugin"
VALUE "FileVersion", "2.0.0.962"
VALUE "InternalName", "pluginWASAPI.dll"
VALUE "LegalCopyright", "(c) 2010-2013 Doubango Telecom. All rights reserved."
VALUE "OriginalFilename", "pluginWASAPI.dll"
VALUE "ProductName", "Doubango IMS Framework WASAPI Plugin"
VALUE "ProductVersion", "2.0.0.962"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
END
#endif // English (U.S.) resources
/////////////////////////////////////////////////////////////////////////////
#ifndef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 3 resource.
//
/////////////////////////////////////////////////////////////////////////////
#endif // not APSTUDIO_INVOKED

View File

@ -41,13 +41,15 @@
<Tool
Name="VCCLCompilerTool"
Optimization="0"
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;PLUGINWINAUDIODSP_EXPORTS"
AdditionalIncludeDirectories="..\..\thirdparties\common\include;..\..\thirdparties\win32\include;..\..\tinySAK\src;..\..\tinyMEDIA\include"
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;PLUGIN_AUDIO_DSP_EXPORTS"
MinimalRebuild="true"
BasicRuntimeChecks="3"
RuntimeLibrary="3"
UsePrecompiledHeader="0"
WarningLevel="3"
DebugInformationFormat="4"
WarnAsError="true"
DebugInformationFormat="1"
/>
<Tool
Name="VCManagedResourceCompilerTool"
@ -60,6 +62,7 @@
/>
<Tool
Name="VCLinkerTool"
AdditionalDependencies="$(OutDir)\tinySAK.lib $(OutDir)\tinyMEDIA.lib"
LinkIncremental="2"
GenerateDebugInformation="true"
SubSystem="2"
@ -114,11 +117,13 @@
Name="VCCLCompilerTool"
Optimization="2"
EnableIntrinsicFunctions="true"
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;PLUGINWINAUDIODSP_EXPORTS"
AdditionalIncludeDirectories="..\..\thirdparties\common\include;..\..\thirdparties\win32\include;..\..\tinySAK\src;..\..\tinyMEDIA\include"
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;PLUGIN_AUDIO_DSP_EXPORTS"
RuntimeLibrary="2"
EnableFunctionLevelLinking="true"
UsePrecompiledHeader="0"
WarningLevel="3"
WarnAsError="true"
DebugInformationFormat="3"
/>
<Tool
@ -132,6 +137,7 @@
/>
<Tool
Name="VCLinkerTool"
AdditionalDependencies="$(OutDir)\tinySAK.lib $(OutDir)\tinyMEDIA.lib"
LinkIncremental="1"
GenerateDebugInformation="true"
SubSystem="2"
@ -170,18 +176,54 @@
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
>
<File
RelativePath=".\dllmain_audio_dsp.cxx"
>
</File>
<File
RelativePath=".\plugin_audio_dsp_denoiser.cxx"
>
</File>
<File
RelativePath=".\plugin_audio_dsp_mediabuffer.cxx"
>
</File>
<File
RelativePath=".\plugin_audio_dsp_resampler.cxx"
>
</File>
<File
RelativePath=".\plugin_audio_dsp_utils.cxx"
>
</File>
</Filter>
<Filter
Name="Header Files"
Filter="h;hpp;hxx;hm;inl;inc;xsd"
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
>
<File
RelativePath=".\plugin_audio_dsp_config.h"
>
</File>
<File
RelativePath=".\plugin_audio_dsp_mediabuffer.h"
>
</File>
<File
RelativePath=".\plugin_audio_dsp_utils.h"
>
</File>
</Filter>
<Filter
Name="Resource Files"
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
>
<File
RelativePath=".\version.rc"
>
</File>
</Filter>
</Files>
<Globals>

View File

@ -0,0 +1,102 @@
// Microsoft Visual C++ generated resource script.
//
// #include "resource.h"
#define APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 2 resource.
//
#include "afxres.h"
/////////////////////////////////////////////////////////////////////////////
#undef APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
// English (U.S.) resources
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
#ifdef _WIN32
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
#pragma code_page(1252)
#endif //_WIN32
#ifdef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// TEXTINCLUDE
//
1 TEXTINCLUDE
BEGIN
"resource.h\0"
END
2 TEXTINCLUDE
BEGIN
"#include ""afxres.h""\r\n"
"\0"
END
3 TEXTINCLUDE
BEGIN
"\r\n"
"\0"
END
#endif // APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// Version
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,0,0,962
PRODUCTVERSION 2,0,0,962
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
#else
FILEFLAGS 0x0L
#endif
FILEOS 0x4L
FILETYPE 0x2L
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "CompanyName", "Doubango Telecom"
VALUE "FileDescription", "Doubango IMS Framework Windows Audio DSP"
VALUE "FileVersion", "2.0.0.962"
VALUE "InternalName", "pluginWinAudioDSP.dll"
VALUE "LegalCopyright", "(c) 2010-2013 Doubango Telecom. All rights reserved."
VALUE "OriginalFilename", "pluginWinAudioDSP.dll"
VALUE "ProductName", "Doubango IMS Framework Windows Audio DSP"
VALUE "ProductVersion", "2.0.0.962"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
END
#endif // English (U.S.) resources
/////////////////////////////////////////////////////////////////////////////
#ifndef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 3 resource.
//
/////////////////////////////////////////////////////////////////////////////
#endif // not APSTUDIO_INVOKED

View File

@ -276,6 +276,10 @@
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
>
<File
RelativePath=".\version.rc"
>
</File>
</Filter>
<Filter
Name="tdav"

View File

@ -0,0 +1,102 @@
// Microsoft Visual C++ generated resource script.
//
// #include "resource.h"
#define APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 2 resource.
//
#include "afxres.h"
/////////////////////////////////////////////////////////////////////////////
#undef APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
// English (U.S.) resources
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
#ifdef _WIN32
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
#pragma code_page(1252)
#endif //_WIN32
#ifdef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// TEXTINCLUDE
//
1 TEXTINCLUDE
BEGIN
"resource.h\0"
END
2 TEXTINCLUDE
BEGIN
"#include ""afxres.h""\r\n"
"\0"
END
3 TEXTINCLUDE
BEGIN
"\r\n"
"\0"
END
#endif // APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// Version
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,0,0,962
PRODUCTVERSION 2,0,0,962
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
#else
FILEFLAGS 0x0L
#endif
FILEOS 0x4L
FILETYPE 0x2L
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "CompanyName", "Doubango Telecom"
VALUE "FileDescription", "Doubango IMS Framework Media Foundation Plugin"
VALUE "FileVersion", "2.0.0.962"
VALUE "InternalName", "pluginMF.dll"
VALUE "LegalCopyright", "(c) 2010-2013 Doubango Telecom. All rights reserved."
VALUE "OriginalFilename", "pluginMF.dll"
VALUE "ProductName", "Doubango IMS Framework Foundation Plugin"
VALUE "ProductVersion", "2.0.0.962"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
END
#endif // English (U.S.) resources
/////////////////////////////////////////////////////////////////////////////
#ifndef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 3 resource.
//
/////////////////////////////////////////////////////////////////////////////
#endif // not APSTUDIO_INVOKED

View File

@ -180,7 +180,7 @@ int tdav_init()
}
#endif
/* CUDA (H.264 codec) */
#if 1 // Enable CUDA by default
#if 0 // Enable CUDA by default
tsk_sprintf(&full_path, "%s/pluginCUDA.dll", tdav_get_current_directory_const()); // CUDA works on all Windows versions
if((__dll_plugin_cuda = tsk_plugin_create(full_path))){
plugins_count += tmedia_plugin_register(__dll_plugin_cuda, tsk_plugin_def_type_all, tsk_plugin_def_media_type_all);

View File

@ -53,8 +53,8 @@ END
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,0,0,835
PRODUCTVERSION 2,0,0,835
FILEVERSION 2,0,0,962
PRODUCTVERSION 2,0,0,962
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
@ -71,12 +71,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Doubango telecom"
VALUE "FileDescription", "Doubango IMS Framework"
VALUE "FileVersion", "2.0.0.835"
VALUE "FileVersion", "2.0.0.962"
VALUE "InternalName", "tinydav.dll"
VALUE "LegalCopyright", "(c) 2010-2013 Doubango Telecom. All rights reserved."
VALUE "OriginalFilename", "tinydav.dll"
VALUE "ProductName", "Doubango IMS Framework"
VALUE "ProductVersion", "2.0.0.835"
VALUE "ProductVersion", "2.0.0.962"
END
END
BLOCK "VarFileInfo"

View File

@ -53,8 +53,8 @@ END
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,0,0,835
PRODUCTVERSION 2,0,0,835
FILEVERSION 2,0,0,962
PRODUCTVERSION 2,0,0,962
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
@ -71,12 +71,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Doubango telecom"
VALUE "FileDescription", "Doubango IMS Framework"
VALUE "FileVersion", "2.0.0.835"
VALUE "FileVersion", "2.0.0.962"
VALUE "InternalName", "tinyhttp.dll"
VALUE "LegalCopyright", "(c) 2010-2013 Doubango Telecom. All rights reserved."
VALUE "OriginalFilename", "tinyhttp.dll"
VALUE "ProductName", "Doubango IMS Framework"
VALUE "ProductVersion", "2.0.0.835"
VALUE "ProductVersion", "2.0.0.962"
END
END
BLOCK "VarFileInfo"

View File

@ -53,8 +53,8 @@ END
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,0,0,835
PRODUCTVERSION 2,0,0,835
FILEVERSION 2,0,0,962
PRODUCTVERSION 2,0,0,962
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
@ -71,12 +71,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Doubango telecom"
VALUE "FileDescription", "Doubango IMS Framework"
VALUE "FileVersion", "2.0.0.835"
VALUE "FileVersion", "2.0.0.962"
VALUE "InternalName", "tinyipsec.dll"
VALUE "LegalCopyright", "(c) 2010-2013 Doubango Telecom. All rights reserved."
VALUE "OriginalFilename", "tinyipsec.dll"
VALUE "ProductName", "Doubango IMS Framework"
VALUE "ProductVersion", "2.0.0.835"
VALUE "ProductVersion", "2.0.0.962"
END
END
BLOCK "VarFileInfo"

View File

@ -53,8 +53,8 @@ END
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,0,0,835
PRODUCTVERSION 2,0,0,835
FILEVERSION 2,0,0,962
PRODUCTVERSION 2,0,0,962
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
@ -71,12 +71,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Doubango telecom"
VALUE "FileDescription", "Doubango IMS Framework"
VALUE "FileVersion", "2.0.0.835"
VALUE "FileVersion", "2.0.0.962"
VALUE "InternalName", "tinymedia.dll"
VALUE "LegalCopyright", "(c) 2010-2013 Doubango Telecom. All rights reserved."
VALUE "OriginalFilename", "tinymedia.dll"
VALUE "ProductName", "Doubango IMS Framework"
VALUE "ProductVersion", "2.0.0.835"
VALUE "ProductVersion", "2.0.0.962"
END
END
BLOCK "VarFileInfo"

View File

@ -53,8 +53,8 @@ END
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,0,0,835
PRODUCTVERSION 2,0,0,835
FILEVERSION 2,0,0,962
PRODUCTVERSION 2,0,0,962
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
@ -71,12 +71,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Doubango telecom"
VALUE "FileDescription", "Doubango IMS Framework"
VALUE "FileVersion", "2.0.0.835"
VALUE "FileVersion", "2.0.0.962"
VALUE "InternalName", "tinymsrp.dll"
VALUE "LegalCopyright", "(c) 2010-2013 Doubango Telecom. All rights reserved."
VALUE "OriginalFilename", "tinymsrp.dll"
VALUE "ProductName", "Doubango IMS Framework"
VALUE "ProductVersion", "2.0.0.835"
VALUE "ProductVersion", "2.0.0.962"
END
END
BLOCK "VarFileInfo"

View File

@ -53,8 +53,8 @@ END
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,0,0,835
PRODUCTVERSION 2,0,0,835
FILEVERSION 2,0,0,962
PRODUCTVERSION 2,0,0,962
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
@ -71,12 +71,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Doubango telecom"
VALUE "FileDescription", "Doubango IMS Framework"
VALUE "FileVersion", "2.0.0.835"
VALUE "FileVersion", "2.0.0.962"
VALUE "InternalName", "tinynet.dll"
VALUE "LegalCopyright", "(c) 2010-2013 Doubango Telecom. All rights reserved."
VALUE "OriginalFilename", "tinynet.dll"
VALUE "ProductName", "Doubango IMS Framework"
VALUE "ProductVersion", "2.0.0.835"
VALUE "ProductVersion", "2.0.0.962"
END
END
BLOCK "VarFileInfo"

View File

@ -53,8 +53,8 @@ END
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,0,0,835
PRODUCTVERSION 2,0,0,835
FILEVERSION 2,0,0,962
PRODUCTVERSION 2,0,0,962
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
@ -71,12 +71,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Doubango telecom"
VALUE "FileDescription", "Doubango IMS Framework"
VALUE "FileVersion", "2.0.0.835"
VALUE "FileVersion", "2.0.0.962"
VALUE "InternalName", "tinyrtp.dll"
VALUE "LegalCopyright", "(c) 2010-2013 Doubango Telecom. All rights reserved."
VALUE "OriginalFilename", "tinyrtp.dll"
VALUE "ProductName", "Doubango IMS Framework"
VALUE "ProductVersion", "2.0.0.835"
VALUE "ProductVersion", "2.0.0.962"
END
END
BLOCK "VarFileInfo"

View File

@ -53,8 +53,8 @@ END
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,0,0,835
PRODUCTVERSION 2,0,0,835
FILEVERSION 2,0,0,962
PRODUCTVERSION 2,0,0,962
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
@ -71,12 +71,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Doubango telecom"
VALUE "FileDescription", "Doubango IMS Framework"
VALUE "FileVersion", "2.0.0.835"
VALUE "FileVersion", "2.0.0.962"
VALUE "InternalName", "tinywrap.dll"
VALUE "LegalCopyright", "(c) 2010-2013 Doubango Telecom. All rights reserved."
VALUE "OriginalFilename", "tinywrap.dll"
VALUE "ProductName", "Doubango IMS Framework"
VALUE "ProductVersion", "2.0.0.835"
VALUE "ProductVersion", "2.0.0.962"
END
END
BLOCK "VarFileInfo"

View File

@ -53,8 +53,8 @@ END
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,0,0,835
PRODUCTVERSION 2,0,0,835
FILEVERSION 2,0,0,962
PRODUCTVERSION 2,0,0,962
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
@ -71,12 +71,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Doubango telecom"
VALUE "FileDescription", "Doubango IMS Framework"
VALUE "FileVersion", "2.0.0.835"
VALUE "FileVersion", "2.0.0.962"
VALUE "InternalName", "tinysdp.dll"
VALUE "LegalCopyright", "(c) 2010-2013 Doubango Telecom. All rights reserved."
VALUE "OriginalFilename", "tinysdp.dll"
VALUE "ProductName", "Doubango IMS Framework"
VALUE "ProductVersion", "2.0.0.835"
VALUE "ProductVersion", "2.0.0.962"
END
END
BLOCK "VarFileInfo"

View File

@ -53,8 +53,8 @@ END
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,0,0,835
PRODUCTVERSION 2,0,0,835
FILEVERSION 2,0,0,962
PRODUCTVERSION 2,0,0,962
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
@ -71,12 +71,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Doubango telecom"
VALUE "FileDescription", "Doubango IMS Framework"
VALUE "FileVersion", "2.0.0.835"
VALUE "FileVersion", "2.0.0.962"
VALUE "InternalName", "tinysigcomp.dll"
VALUE "LegalCopyright", "(c) 2010-2013 Doubango Telecom. All rights reserved."
VALUE "OriginalFilename", "tinysigcomp.dll"
VALUE "ProductName", "Doubango IMS Framework"
VALUE "ProductVersion", "2.0.0.835"
VALUE "ProductVersion", "2.0.0.962"
END
END
BLOCK "VarFileInfo"

View File

@ -53,8 +53,8 @@ END
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,0,0,835
PRODUCTVERSION 2,0,0,835
FILEVERSION 2,0,0,962
PRODUCTVERSION 2,0,0,962
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
@ -71,12 +71,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Doubango telecom"
VALUE "FileDescription", "Doubango IMS Framework"
VALUE "FileVersion", "2.0.0.835"
VALUE "FileVersion", "2.0.0.962"
VALUE "InternalName", "tinysip.dll"
VALUE "LegalCopyright", "(c) 2010-2013 Doubango Telecom. All rights reserved."
VALUE "OriginalFilename", "tinysip.dll"
VALUE "ProductName", "Doubango IMS Framework"
VALUE "ProductVersion", "2.0.0.835"
VALUE "ProductVersion", "2.0.0.962"
END
END
BLOCK "VarFileInfo"

View File

@ -53,8 +53,8 @@ END
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,0,0,835
PRODUCTVERSION 2,0,0,835
FILEVERSION 2,0,0,962
PRODUCTVERSION 2,0,0,962
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
@ -71,12 +71,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Doubango telecom"
VALUE "FileDescription", "Doubango IMS Framework"
VALUE "FileVersion", "2.0.0.835"
VALUE "FileVersion", "2.0.0.962"
VALUE "InternalName", "tinysms.dll"
VALUE "LegalCopyright", "(c) 2010-2013 Doubango Telecom. All rights reserved."
VALUE "OriginalFilename", "tinysms.dll"
VALUE "ProductName", "Doubango IMS Framework"
VALUE "ProductVersion", "2.0.0.835"
VALUE "ProductVersion", "2.0.0.962"
END
END
BLOCK "VarFileInfo"

View File

@ -53,8 +53,8 @@ END
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,0,0,835
PRODUCTVERSION 2,0,0,835
FILEVERSION 2,0,0,962
PRODUCTVERSION 2,0,0,962
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
@ -71,12 +71,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Doubango telecom"
VALUE "FileDescription", "Doubango IMS Framework"
VALUE "FileVersion", "2.0.0.835"
VALUE "FileVersion", "2.0.0.962"
VALUE "InternalName", "tinyxcap.dll"
VALUE "LegalCopyright", "(c) 2010-2013 Doubango Telecom. All rights reserved."
VALUE "OriginalFilename", "tinyxcap.dll"
VALUE "ProductName", "Doubango IMS Framework"
VALUE "ProductVersion", "2.0.0.835"
VALUE "ProductVersion", "2.0.0.962"
END
END
BLOCK "VarFileInfo"

View File

@ -19,7 +19,6 @@ UpdateVersion()
}
UpdateVersion tinyDAV/version.rc
UpdateVersion tinyDSHOW/version.rc
UpdateVersion tinyHTTP/version.rc
UpdateVersion tinyIPSec/version.rc
UpdateVersion tinyMEDIA/version.rc
@ -32,4 +31,10 @@ UpdateVersion tinySIGCOMP/version.rc
UpdateVersion tinySIP/version.rc
UpdateVersion tinySMS/version.rc
UpdateVersion tinyXCAP/version.rc
UpdateVersion bindings/version.rc
UpdateVersion bindings/version.rc
UpdateVersion plugins/pluginCUDA/version.rc
UpdateVersion plugins/pluginDirectShow/version.rc
UpdateVersion plugins/pluginWASAPI/version.rc
UpdateVersion plugins/pluginWinAudioDSP/version.rc
UpdateVersion plugins/pluginWinMF/version.rc