[2] | 1 | /*
|
---|
| 2 | * This program is free software; you can redistribute it and/or modify
|
---|
| 3 | * it under the terms of the GNU General Public License as published by
|
---|
| 4 | * the Free Software Foundation; either version 2, or (at your option)
|
---|
| 5 | * any later version.
|
---|
| 6 | *
|
---|
| 7 | * This program is distributed in the hope that it will be useful,
|
---|
| 8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 10 | * GNU General Public License for more details.
|
---|
| 11 | *
|
---|
| 12 | * You should have received a copy of the GNU General Public License
|
---|
| 13 | * along with this program; see the file COPYING. If not, write to
|
---|
| 14 | * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
---|
| 15 | */
|
---|
| 16 | /*
|
---|
| 17 | * If you need another license for your project/product (commercial,
|
---|
| 18 | * noncommercial, whatever) contact me at
|
---|
| 19 | *
|
---|
| 20 | * http://www.os2world.com/cdwriting
|
---|
| 21 | * http://www.geocities.com/SiliconValley/Sector/5785/
|
---|
| 22 | *
|
---|
| 23 | */
|
---|
| 24 |
|
---|
| 25 | #ifndef _CWOGGINC_H_INCLUDED
|
---|
| 26 | #define _CWOGGINC_H_INCLUDED
|
---|
| 27 |
|
---|
| 28 | #include "common.h"
|
---|
| 29 |
|
---|
| 30 | #define OGGFILE_HELP_PANEL 20
|
---|
| 31 | #define OGGFILE_HELP_LIBRARY "cwmm.hlp"
|
---|
| 32 |
|
---|
| 33 | /* For querying bitrate of OGG-files. */
|
---|
| 34 | #define FOURCC_Vorbis mmioFOURCC('O', 'G', 'G', 'S')
|
---|
| 35 | #define VORBIS_COOKIE 0x99E59D59
|
---|
| 36 |
|
---|
| 37 | typedef struct _VORBISOPTIONS {
|
---|
| 38 | int cookie;
|
---|
| 39 | long nominal_bitrate;
|
---|
| 40 | long max_bitrate;
|
---|
| 41 | long min_bitrate;
|
---|
| 42 | } VORBISOPTIONS;
|
---|
| 43 |
|
---|
| 44 | typedef VORBISOPTIONS *PVORBISOPTIONS;
|
---|
| 45 |
|
---|
| 46 | #endif /* */
|
---|