riptracks.h
上传用户:xmgzy123
上传日期:2007-01-07
资源大小:373k
文件大小:2k
源码类别:

SCSI/ASPI

开发平台:

WINDOWS

  1. /*
  2.  * riptracks.h - Copyright (C) 1999,2000 Jay A. Key
  3.  *
  4.  * Interface to riptracks.c
  5.  *
  6.  **********************************************************************
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 2 of the License, or
  11.  * (at your option) any later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU General Public License
  19.  * along with this program; if not, write to the Free Software
  20.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  21.  *
  22.  */
  23. #ifndef _RIPTRACKS_H_INC
  24. #define _RIPTRACKS_H_INC
  25. #include <windows.h>
  26. #include <stdio.h>
  27. #include <time.h>
  28. #include "wrqueue.h"
  29. #define WM_TRACKDONE   (WM_USER+9090)
  30. /*
  31.  * WAV file header format
  32.  */
  33. typedef struct
  34. {
  35.   BYTE  riff[4];            /* must be "RIFF"                */
  36.   DWORD len;                /* #bytes + 44 - 8               */
  37.   BYTE  cWavFmt[8];         /* must be "WAVEfmt"             */
  38.   DWORD dwHdrLen;
  39.   WORD  wFormat;
  40.   WORD  wNumChannels;
  41.   DWORD dwSampleRate;
  42.   DWORD dwBytesPerSec;
  43.   WORD  wBlockAlign;
  44.   WORD  wBitsPerSample;
  45.   BYTE  cData[4];            /* must be "data"               */
  46.   DWORD dwDataLen;           /* #bytes                       */
  47. } PACKED WAVHDR, *PWAVHDR, *LPWAVHDR;
  48. typedef struct
  49. {
  50.   FILE *fpOut;
  51.   WRQUEUE q;
  52.   DWORD startFrame;
  53.   DWORD endFrame;
  54.   DWORD trackLen;
  55.   DWORD totalWritten;
  56.   int idx;
  57.   time_t tstart, tnow;
  58.   double pctDone, pctLeft;
  59.   DWORD hrs, min, sec;
  60.   BOOL bForceRipExit;
  61.   BOOL bForceEncExit;
  62.   BOOL bNormalExit;
  63.   int status;
  64.   HWND hDlg;
  65.   HANDLE aHandles[2];  // Rip = 0, Enc = 1
  66.   HANDLE hRipCancel;
  67.   CRITICAL_SECTION cs;
  68.   FILE *fpWavMirror;
  69.   BOOL bOldLame;
  70. } ENCODETHREAD, FAR *LPENCODETHREAD;
  71. #define EST_SUCCESS    0
  72. #define EST_ABORTED    1
  73. #define EST_ERROR      2
  74. #endif