libsent/src/adin/adin_file.c

ファイル入力:WAV/RAWファイルおよび標準入力からの読み込み [詳細]

#include <sent/stddefs.h>
#include <sent/speech.h>
#include <sent/adin.h>
adin_file.cのインクルード依存関係図

ソースコードを見る。

マクロ定義

#define MYREAD(A, B, C, D)   if (!myread(A, B, C, D)) {j_printerr("adin_file: file is corrupted\n"); return -1;}
 Abbreviation for header reading.

関数

static boolean myread (void *buf, size_t unitbyte, int unitnum, FILE *fp)
static boolean setup_wav (FILE *fp)
 Parse header part of a WAVE file to prepare for data reading.
static boolean adin_file_open (char *filename)
 Open input file.
static boolean adin_file_close ()
char * get_line (char *prompt)
boolean adin_file_standby (int freq, void *arg)
boolean adin_file_begin ()
 Begin reading audio data from a file.
int adin_file_read (SP16 *buf, int sampnum)
boolean adin_file_end ()
boolean adin_stdin_standby (int freq, void *arg)
boolean adin_stdin_begin ()
 Begin reading audio data from stdin.
int adin_stdin_read (SP16 *buf, int sampnum)

変数

static FILE * gfp
 File pointer of current input file.
static boolean wav_p
 TRUE if input is WAVE file, FALSE if RAW file.
static int maxlen
 Number of samples, described in the header of WAVE file.
static int nowlen
 Current number of read samples.
static SP16 pre_data [2]
static boolean has_pre
 TRUE if pre_data is available.
static unsigned int sfreq
 Sampling frequency in Hz, specified by adin_standby().
static boolean from_file
 TRUE if list file is used to read input filename.
static FILE * fp_list
 File pointer used for the listfile.

説明

ファイル入力:WAV/RAWファイルおよび標準入力からの読み込み

作者:
Akinobu LEE
日付:
Sun Feb 13 13:31:20 2005

音声ファイルからの入力を行なう関数です.サポートしているファイル形式は Microsoft WAVE形式の音声ファイル,およびヘッダ無し(RAW)ファイルです. オーディオ形式は,無圧縮PCM,16bit,モノラルに限られています. RAWファイルの場合,データのバイトオーダーが big endian であることを 前提としていますので,注意してください.

ファイルのサンプリングレートはシステムの要求するサンプリングレート (adin_standby() で指定される値)と一致する必要があります. WAVE形式のファイルの場合は, ファイルのサンプリングレートがこの指定値と一致しなければエラーとなります. RAWファイル入力の場合は,ファイルにヘッダ情報が無く録音時の サンプリングレートが不明なため,チェック無しでファイルの サンプリングレートが adin_standby() で指定された値である と仮定して処理されます.

入力ファイル名は,標準入力から読み込まれます. ファイル名を列挙したファイルリストファイルが指定された場合, そのファイルから入力ファイル名が順次読み込まれます.

libsndfile を使用する場合,adin_sndfile.c 内の関数が使用されます. この場合,このファイルの関数は使用されません.

このファイル内では int を 4byte, short を 2byte と仮定しています.

Revision
1.3

adin_file.c で定義されています。


関数

static boolean myread ( void *  buf,
size_t  unitbyte,
int  unitnum,
FILE *  fp 
) [static]

Read a header value from WAVE file with endian conversion. If required number of data has not been read, it produces error.

引数:
buf [out] Pointer to store read data
unitbyte [in] Unit size
unitnum [in] Required number of units to read
fp [in] File pointer
戻り値:
TRUE on success, FALSE if required number of data has not been read.

adin_file.c102 行で定義されています。

参照元 setup_wav().

static boolean setup_wav ( FILE *  fp  )  [static]

Parse header part of a WAVE file to prepare for data reading.

The audio format will be checked here, and data length is also read from the header. Then the pointer is moved to the start point of data part.

When called, the file pointer should be located just after the first 4 bytes, "RIFF". It also sets maxlen and nowlen .

引数:
fp [in] File pointer
戻り値:
TRUE if check successfully passed, FALSE if an error occured.

adin_file.c130 行で定義されています。

参照元 adin_file_open().

static boolean adin_file_open ( char *  filename  )  [static]

Open input file.

Open the file, check the file format, and set the file pointer to gfp .

引数:
filename [in] file name, or NULL for standard input
戻り値:
TRUE on success, FALSE on failure.

adin_file.c239 行で定義されています。

参照元 adin_file_begin(), と adin_stdin_begin().

static boolean adin_file_close (  )  [static]

Close the input file

戻り値:
TRUE on success, FALSE on failure.

adin_file.c288 行で定義されています。

参照元 adin_file_end(), と adin_file_read().

char* get_line ( char *  prompt  ) 

Get one file name from stdin with a prompt . Blank line is omitted.

引数:
prompt [in] prompt string
戻り値:
newly allocated buffer filled with the input.

adin_file.c314 行で定義されています。

参照元 adin_file_begin(), adin_sndfile_begin(), と main_recognition_loop().

boolean adin_file_standby ( int  freq,
void *  arg 
)

Initialization: if listfile is specified, open it here.

引数:
freq [in] required sampling frequency.
arg [in] file name of listfile, or NULL if not use
戻り値:
TRUE on success, FALSE on failure.

adin_file.c355 行で定義されています。

参照元 adin_select().

boolean adin_file_begin (  ) 

Begin reading audio data from a file.

If listfile was specified in adin_file_standby(), the next filename will be read from the listfile. Otherwise, the filename will be obtained from stdin. Then the file will be opened here.

戻り値:
TRUE on success, FALSE on failure.

adin_file.c385 行で定義されています。

参照元 adin_select().

int adin_file_read ( SP16 buf,
int  sampnum 
)

Try to read sampnum samples and returns actual sample num recorded.

引数:
buf [out] samples obtained in this function
sampnum [in] wanted number of samples to be read
戻り値:
actural number of read samples, -1 if EOF, -2 if error.

adin_file.c429 行で定義されています。

参照元 adin_select().

boolean adin_file_end (  ) 

End recording.

戻り値:
TRUE on success, FALSE on failure.

adin_file.c476 行で定義されています。

参照元 adin_select().

boolean adin_stdin_standby ( int  freq,
void *  arg 
)

Initialization for speech input via stdin.

引数:
freq [in] required sampling frequency.
arg dummy, ignored
戻り値:
TRUE on success, FALSE on failure.

adin_file.c492 行で定義されています。

参照元 adin_select().

boolean adin_stdin_begin (  ) 

Begin reading audio data from stdin.

戻り値:
TRUE on success, FALSE on failure.

adin_file.c505 行で定義されています。

参照元 adin_select().

int adin_stdin_read ( SP16 buf,
int  sampnum 
)

Try to read sampnum samples and returns actual sample num recorded.

引数:
buf [out] samples obtained in this function
sampnum [in] wanted number of samples to be read
戻り値:
actural number of read samples, -1 if EOF, -2 if error.

adin_file.c528 行で定義されています。

参照元 adin_select().


変数

SP16 pre_data[2] [static]

When file input, the first 4 bytes of the file are read at first to identify whether it is WAVE file format. This work area is used to keep back the 4 bytes if the input is actually a RAW format.

adin_file.c82 行で定義されています。

参照元 adin_file_open(), adin_file_read(), と adin_stdin_read().


Juliusに対してTue Sep 22 00:14:57 2009に生成されました。  doxygen 1.6.0