Initial code for voice synchronization.

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@566 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
ghaushe
2003-01-18 23:26:17 +00:00
parent 2975dd0e52
commit 7b9af3cc3b
10 changed files with 1328 additions and 0 deletions
+94
View File
@@ -0,0 +1,94 @@
//
//
// Ur-Quan Masters Voice-over / Subtitle Synchronization tool
// Copyright 2003 by Geoffrey Hausheer
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
// License as published by the Free Software Foundation; either
// version 2 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Library General Public License for more details.
//
// You should have received a copy of the GNU Library General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// contact tcpaiqgvnmbf28f001@sneakemail.com for bugs/issues
//
#include "audio.h"
#define MAX_LEN 200
#define MAX_TRACKS 300
typedef struct CLIPTXTDATA {
char str[MAX_LEN];
unsigned long time;
int frame_num;
CLIPTXTDATA *Next;
CLIPTXTDATA ()
{
str[0] = 0;
time = 0;
frame_num = 0;
Next = NULL;
}
~CLIPTXTDATA ()
{
if(Next !=NULL)
delete Next;
}
} CLIPTXTDATA;
typedef struct FILEDATA {
char filename[20];
int num_lines;
long chksum;
unsigned long tracktime;
CLIPTXTDATA *clip;
FILEDATA ()
{
num_lines = 0;
clip = NULL;
chksum = 0;
tracktime = 0;
filename[0] = 0;
}
~FILEDATA()
{
if (clip != NULL)
delete clip;
clip = NULL;
}
} FILEDATA;
typedef struct XTRATRACKDATA {
unsigned long time;
int tracknum;
int paused;
XTRATRACKDATA () {
time = 0;
tracknum = 0;
paused = 0;
}
} XTRATRACKDATA;
int read_ogg (char *filename, AUDIOHDR *audiohdr);
unsigned long get_ogg_runtime (char *filename);
unsigned long checksum(char *filename);
unsigned long get_clock();
extern unsigned long clocks_per_sec;
extern char AUDIO_TYPE[];
typedef struct {int bogus;} WAVESTRUCT;
void init_sound ();
void reset_sound (WAVESTRUCT *WaveData);
void pause_sound (WAVESTRUCT *WaveData);
void unpause_sound (WAVESTRUCT *WaveData);
WAVESTRUCT *play_sound(AUDIOHDR *audiohdr);