fix awdw solo vicon crash, fix nested clip for binfolders, open edit edl
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / file.inc
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2010 Adam Williams <broadcast at earthling dot net>
5  *
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.
10  *
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.
15  *
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
19  *
20  */
21
22 #ifndef FILE_INC
23 #define FILE_INC
24
25 // Normally, these are sourced from the compiler command line
26 //   as: c++ -Dvar=value defines
27 #ifndef CIN_CONFIG
28 #define CIN_CONFIG "~/.bcast5"
29 #endif
30 #ifndef LOCALE_DIR
31 #define LOCALE_DIR "$CIN_LIB/locale"
32 #endif
33 #ifndef CINDAT_DIR
34 #define CINDAT_DIR "$CIN_PATH"
35 #endif
36 #ifndef CINLIB_DIR
37 #define CINLIB_DIR "$CIN_PATH"
38 #endif
39 #ifndef PLUGIN_DIR
40 #define PLUGIN_DIR "$CIN_LIB/plugins"
41 #endif
42 #ifndef LADSPA_DIR
43 #define LADSPA_DIR "$CIN_LIB/ladspa"
44 #endif
45 #ifndef CIN_BROWSER
46 #define CIN_BROWSER "firefox"
47 #endif
48
49 #include "language.h"
50
51 // Return values for open_file
52 #define FILE_OK 0
53 #define FILE_NOT_FOUND 1
54 #define FILE_UNRECOGNIZED_CODEC 2
55 #define FILE_IS_XML 3
56
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
62 #define FILE_PCM                1
63 #define FILE_WAV                2
64 #define FILE_PNG                4
65 #define FILE_JPEG               5
66 #define FILE_TIFF               6
67 #define FILE_GIF                7
68 #define FILE_JPEG_LIST          8
69 #define FILE_AU                 9
70 #define FILE_AIFF               10
71 #define FILE_SND                11
72 #define FILE_TGA_LIST           13
73 #define FILE_TGA                14
74 #define FILE_MPEG               15
75 #define FILE_AMPEG              16    // For encoding only
76 #define FILE_VMPEG              17    // For encoding only
77 #define FILE_RAWDV              18
78 #define FILE_TIFF_LIST          22
79 #define FILE_PNG_LIST           23
80 #define FILE_AC3                25    // AC3 encoding
81 #define FILE_EXR                26
82 #define FILE_EXR_LIST           27
83 #define FILE_CR2                28
84 #define FILE_OGG                30
85 #define FILE_VORBIS             31
86 #define FILE_FLAC               32
87 #define FILE_FFMPEG             33
88 #define FILE_SCENE              34
89 #define FILE_CR2_LIST           35
90 #define FILE_GIF_LIST           36
91 #define FILE_DB                 37
92 #define FILE_PPM                38
93 #define FILE_PPM_LIST           39
94 #define FILE_REF                40
95
96 // For formats supported by plugins, the format number is the plugin number in the
97 // plugin list ORed with 0x8000.
98
99 #if 0
100 N_("AC3")
101 N_("Apple/SGI AIFF")
102 N_("AVI Arne Type 1")
103 N_("AVI Avifile")
104 N_("AVI DV Type 2")
105 N_("AVI Lavtools")
106 N_("EXR")
107 N_("EXR Sequence")
108 N_("FFMPEG")
109 N_("FLAC")
110 N_("GIF")
111 N_("GIF Sequence")
112 N_("JPEG")
113 N_("JPEG Sequence")
114 N_("Microsoft WAV")
115 N_("MPEG Audio")    // For encoding only
116 N_("MPEG")          // For decoding only
117 N_("MPEG Video")    // For encoding only
118 N_("OGG Theora/Vorbis")
119 N_("OGG Vorbis")    // For decoding only
120 N_("PNG")
121 N_("PNG Sequence")
122 N_("PPM")
123 N_("PPM Sequence")
124 N_("Raw DV")
125 N_("Raw PCM")
126 N_("Sun/NeXT AU")
127 N_("TGA")
128 N_("TGA Sequence")
129 N_("TIFF")
130 N_("TIFF Sequence")
131 N_("Unknown sound")
132 N_("Reference to EDL")
133 #endif
134
135 #define AC3_NAME                "AC3"
136 #define AIFF_NAME               "Apple/SGI AIFF"
137 #define AMPEG_NAME              "MPEG Audio"    // For encoding only
138 #define AU_NAME                 "Sun/NeXT AU"
139 #define AVI_ARNE1_NAME          "AVI Arne Type 1"
140 #define AVI_ARNE2_NAME          "AVI DV Type 2"
141 #define AVI_AVIFILE_NAME        "AVI Avifile"
142 #define AVI_LAVTOOLS_NAME       "AVI Lavtools"
143 #define CR2_LIST_NAME           "CR2 Sequence"
144 #define CR2_NAME                "Raw Camera"
145 #define DBASE_NAME              "DB"
146 #define EXR_LIST_NAME           "EXR Sequence"
147 #define EXR_NAME                "EXR"
148 #define FFMPEG_NAME             "FFMPEG"
149 #define FLAC_NAME               "FLAC"
150 #define GIF_NAME                "GIF"
151 #define GIF_LIST_NAME           "GIF Sequence"
152 #define JPEG_LIST_NAME          "JPEG Sequence"
153 #define JPEG_NAME               "JPEG"
154 #define MPEG_NAME               "MPEG Stream"   // For capture only
155 #define OGG_NAME                "OGG Theora/Vorbis"
156 #define PCM_NAME                "Raw PCM"
157 #define PNG_LIST_NAME           "PNG Sequence"
158 #define PNG_NAME                "PNG"
159 #define PPM_LIST_NAME           "PPM Sequence"
160 #define PPM_NAME                "PPM"
161 #define RAWDV_NAME              "Raw DV"
162 #define SCENE_NAME              "Text To Movie"
163 #define SND_NAME                "Unknown sound"
164 #define TGA_LIST_NAME           "TGA Sequence"
165 #define TGA_NAME                "TGA"
166 #define TIFF_LIST_NAME          "TIFF Sequence"
167 #define TIFF_NAME               "TIFF"
168 #define VMPEG_NAME              "MPEG Video"    // For encoding only
169 #define VORBIS_NAME             "OGG Vorbis"
170 #define WAV_NAME                "Microsoft WAV"
171 #define REF_NAME                "Reference EDL"
172
173 #define BITSLINEAR8    8
174 #define BITSLINEAR16   16
175 #define BITSLINEAR24   24
176 #define BITSLINEAR32   32
177 #define BITS_ADPCM     252
178 #define BITSFLOAT      253
179 #define BITSULAW       254
180
181 #if 0
182 N_("8 Bit Linear")
183 N_("16 Bit Linear")
184 N_("24 Bit Linear")
185 N_("32 Bit Linear")
186 N_("u Law")
187 N_("IMA 4")
188 N_("ADPCM")
189 N_("Float")
190
191 N_("RGB ALPHA")
192 N_("PNG ALPHA")
193 #endif
194
195 #define NAME_8BIT "8 Bit Linear"
196 #define NAME_16BIT "16 Bit Linear"
197 #define NAME_24BIT "24 Bit Linear"
198 #define NAME_32BIT "32 Bit Linear"
199 #define NAME_ULAW "u Law"
200 #define NAME_ADPCM "ADPCM"
201 #define NAME_FLOAT "Float"
202
203
204 class File;
205 //result<0: continue skimming, result>=0: exit return code
206 typedef int (*skim_fn)(void *vp, int track);
207
208 #endif