4 * Copyright (C) 2010 Adam Williams <broadcast at earthling dot net>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 // Normally, these are sourced from the compiler command line
26 // as: c++ -Dvar=value defines
28 #define CIN_CONFIG "~/.bcast5"
31 #define LOCALE_DIR "$CIN_LIB/locale"
34 #define CINDAT_DIR "$CIN_PATH"
37 #define CINLIB_DIR "$CIN_PATH"
40 #define PLUGIN_DIR "$CIN_LIB/plugins"
43 #define LADSPA_DIR "$CIN_LIB/ladspa"
46 #define CIN_BROWSER "firefox"
51 // Return values for open_file
53 #define FILE_NOT_FOUND 1
54 #define FILE_UNRECOGNIZED_CODEC 2
57 // Numeric codes for each file format
58 // They're stored in XML files, so they have to be fixed.
59 #define FILE_PLUGIN 0x8000
60 #define FILE_UNKNOWN 0
61 // Libzmpeg3 decoding and transport stream capture only
68 #define FILE_JPEG_LIST 8
72 #define FILE_TGA_LIST 13
75 #define FILE_AMPEG 16 // For encoding only
76 #define FILE_VMPEG 17 // For encoding only
78 #define FILE_TIFF_LIST 22
79 #define FILE_PNG_LIST 23
80 #define FILE_AC3 25 // AC3 encoding
82 #define FILE_EXR_LIST 27
85 #define FILE_VORBIS 31
87 #define FILE_FFMPEG 33
89 #define FILE_CR2_LIST 35
90 #define FILE_GIF_LIST 36
93 #define FILE_PPM_LIST 39
95 // For formats supported by plugins, the format number is the plugin number in the
96 // plugin list ORed with 0x8000.
101 N_("AVI Arne Type 1")
112 N_("MPEG Audio") // For encoding only
113 N_("MPEG") // For decoding only
114 N_("MPEG Video") // For encoding only
115 N_("OGG Theora/Vorbis")
116 N_("OGG Vorbis") // For decoding only
131 #define AC3_NAME "AC3"
132 #define AIFF_NAME "Apple/SGI AIFF"
133 #define AMPEG_NAME "MPEG Audio" // For encoding only
134 #define AU_NAME "Sun/NeXT AU"
135 #define AVI_ARNE1_NAME "AVI Arne Type 1"
136 #define AVI_ARNE2_NAME "AVI DV Type 2"
137 #define AVI_AVIFILE_NAME "AVI Avifile"
138 #define AVI_LAVTOOLS_NAME "AVI Lavtools"
139 #define CR2_LIST_NAME "CR2 Sequence"
140 #define CR2_NAME "Raw Camera"
141 #define DBASE_NAME "DB"
142 #define EXR_LIST_NAME "EXR Sequence"
143 #define EXR_NAME "EXR"
144 #define FFMPEG_NAME "FFMPEG"
145 #define FLAC_NAME "FLAC"
146 #define JPEG_LIST_NAME "JPEG Sequence"
147 #define JPEG_NAME "JPEG"
148 #define MPEG_NAME "MPEG Stream" // For capture only
149 #define OGG_NAME "OGG Theora/Vorbis"
150 #define PCM_NAME "Raw PCM"
151 #define PNG_LIST_NAME "PNG Sequence"
152 #define PNG_NAME "PNG"
153 #define PPM_LIST_NAME "PPM Sequence"
154 #define PPM_NAME "PPM"
155 #define RAWDV_NAME "Raw DV"
156 #define SCENE_NAME "Text To Movie"
157 #define SND_NAME "Unknown sound"
158 #define TGA_LIST_NAME "TGA Sequence"
159 #define TGA_NAME "TGA"
160 #define TIFF_LIST_NAME "TIFF Sequence"
161 #define TIFF_NAME "TIFF"
162 #define VMPEG_NAME "MPEG Video" // For encoding only
163 #define VORBIS_NAME "OGG Vorbis"
164 #define WAV_NAME "Microsoft WAV"
166 #define BITSLINEAR8 8
167 #define BITSLINEAR16 16
168 #define BITSLINEAR24 24
169 #define BITSLINEAR32 32
170 #define BITS_ADPCM 252
171 #define BITSFLOAT 253
188 #define NAME_8BIT "8 Bit Linear"
189 #define NAME_16BIT "16 Bit Linear"
190 #define NAME_24BIT "24 Bit Linear"
191 #define NAME_32BIT "32 Bit Linear"
192 #define NAME_ULAW "u Law"
193 #define NAME_ADPCM "ADPCM"
194 #define NAME_FLOAT "Float"
198 //result<0: continue skimming, result>=0: exit return code
199 typedef int (*skim_fn)(void *vp, int track);