Skip to content

Commit 298556b

Browse files
committed
phonemeextractor: Backport phonemeextractor DLLs from TF2
1 parent 909a09d commit 298556b

17 files changed

+4510
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
//========= Copyright Valve Corporation, All rights reserved. ============//
2+
//
3+
// Purpose:
4+
//
5+
//=============================================================================//
6+
#include "winlite.h"
7+
#include "tier1/strtools.h"
8+
#include <stdio.h>
9+
10+
char *va( const char *fmt, ... )
11+
{
12+
va_list args;
13+
static char output[4][1024];
14+
static int outbuffer = 0;
15+
16+
outbuffer++;
17+
va_start( args, fmt );
18+
vprintf( fmt, args );
19+
V_vsprintf_safe( output[ outbuffer & 3 ], fmt, args );
20+
return output[ outbuffer & 3 ];
21+
}

utils/phonemeextractor/ims_helper/ims_helper.cpp

Lines changed: 727 additions & 0 deletions
Large diffs are not rendered by default.

utils/phonemeextractor/ims_helper/ims_helper.h

Lines changed: 409 additions & 0 deletions
Large diffs are not rendered by default.

utils/phonemeextractor/lipsinc_data/DtC6dal.dat

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

utils/phonemeextractor/lipsinc_data/DtC6dl.dat

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)