add LastFrame plugin, add bld_scripts
[goodguy/history.git] / cinelerra-5.0 / 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 #include "language.h"
26
27 #define USE_FILEFORK
28
29 // Return values for open_file
30 #define FILE_OK 0
31 #define FILE_NOT_FOUND 1
32 #define FILE_UNRECOGNIZED_CODEC 2
33 #define FILE_IS_XML 3
34
35 // Numeric codes for each file format
36 // They're stored in XML files, so they have to be fixed.
37 #define FILE_PLUGIN             0x8000
38 #define FILE_UNKNOWN            0
39 // Libzmpeg3 decoding and transport stream capture only
40 #define FILE_PCM                1
41 #define FILE_WAV                2
42 #define FILE_PNG                4
43 #define FILE_JPEG               5
44 #define FILE_TIFF               6
45 #define FILE_GIF                7
46 #define FILE_JPEG_LIST          8
47 #define FILE_AU                 9
48 #define FILE_AIFF               10
49 #define FILE_SND                11
50 #define FILE_TGA_LIST           13
51 #define FILE_TGA                14
52 #define FILE_MPEG               15    
53 #define FILE_AMPEG              16    // For encoding only
54 #define FILE_VMPEG              17    // For encoding only
55 #define FILE_RAWDV              18
56 #define FILE_TIFF_LIST          22
57 #define FILE_PNG_LIST           23
58 #define FILE_AC3                25    // AC3 encoding
59 #define FILE_EXR                26
60 #define FILE_EXR_LIST           27
61 #define FILE_CR2                28
62 #define FILE_OGG                30
63 #define FILE_VORBIS             31
64 #define FILE_FLAC               32
65 #define FILE_FFMPEG             33
66 #define FILE_SCENE              34
67 #define FILE_CR2_LIST           35
68 #define FILE_GIF_LIST           36
69 #define FILE_DB                 37
70
71 // For formats supported by plugins, the format number is the plugin number in the 
72 // plugin list ORed with 0x8000.
73
74 #if 0
75 N_("AC3")
76 N_("Apple/SGI AIFF")
77 N_("AVI Arne Type 1")
78 N_("AVI Avifile")
79 N_("AVI DV Type 2")
80 N_("AVI Lavtools")
81 N_("EXR")
82 N_("EXR Sequence")
83 N_("FFMPEG")
84 N_("FLAC")
85 N_("JPEG")
86 N_("JPEG Sequence")
87 N_("Microsoft WAV")
88 N_("MPEG Audio")    // For encoding only
89 N_("MPEG")          // For decoding only
90 N_("MPEG Video")    // For encoding only
91 N_("OGG Theora/Vorbis")
92 N_("OGG Vorbis")    // For decoding only
93 N_("PNG")
94 N_("PNG Sequence")
95 N_("Raw DV")
96 N_("Raw PCM")
97 N_("Sun/NeXT AU")
98 N_("TGA")
99 N_("TGA Sequence")
100 N_("TIFF")
101 N_("TIFF Sequence")
102 N_("Unknown sound")
103 #endif
104
105 #define AC3_NAME                "AC3"
106 #define AIFF_NAME               "Apple/SGI AIFF"
107 #define AMPEG_NAME              "MPEG Audio"    // For encoding only
108 #define AU_NAME                 "Sun/NeXT AU"
109 #define AVI_ARNE1_NAME          "AVI Arne Type 1"
110 #define AVI_ARNE2_NAME          "AVI DV Type 2"
111 #define AVI_AVIFILE_NAME        "AVI Avifile"
112 #define AVI_LAVTOOLS_NAME       "AVI Lavtools"
113 #define CR2_LIST_NAME           "CR2 Sequence"
114 #define CR2_NAME                "Raw Camera"
115 #define DBASE_NAME              "DB"
116 #define EXR_LIST_NAME           "EXR Sequence"
117 #define EXR_NAME                "EXR"
118 #define FFMPEG_NAME             "FFMPEG"
119 #define FLAC_NAME               "FLAC"
120 #define JPEG_LIST_NAME          "JPEG Sequence"
121 #define JPEG_NAME               "JPEG"
122 #define MPEG_NAME               "MPEG"           // For decoding only
123 #define OGG_NAME                "OGG Theora/Vorbis"
124 #define PCM_NAME                "Raw PCM"
125 #define PNG_LIST_NAME           "PNG Sequence"
126 #define PNG_NAME                "PNG"
127 #define RAWDV_NAME              "Raw DV"
128 #define SCENE_NAME              "Text To Movie"
129 #define SND_NAME                "Unknown sound"
130 #define TGA_LIST_NAME           "TGA Sequence"
131 #define TGA_NAME                "TGA"
132 #define TIFF_LIST_NAME          "TIFF Sequence"
133 #define TIFF_NAME               "TIFF"
134 #define VMPEG_NAME              "MPEG Video"    // For encoding only
135 #define VORBIS_NAME             "OGG Vorbis"
136 #define WAV_NAME                "Microsoft WAV"
137
138 #define BITSLINEAR8    8
139 #define BITSLINEAR16   16
140 #define BITSLINEAR24   24
141 #define BITSLINEAR32   32
142 #define BITS_ADPCM     252
143 #define BITSFLOAT      253
144 #define BITSULAW       254
145
146 #if 0
147 N_("8 Bit Linear")
148 N_("16 Bit Linear")
149 N_("24 Bit Linear")
150 N_("32 Bit Linear")
151 N_("u Law")
152 N_("IMA 4")
153 N_("ADPCM")
154 N_("Float")
155
156 N_("RGB ALPHA")
157 N_("PNG ALPHA")
158 #endif
159
160 #define NAME_8BIT "8 Bit Linear"
161 #define NAME_16BIT "16 Bit Linear"
162 #define NAME_24BIT "24 Bit Linear"
163 #define NAME_32BIT "32 Bit Linear"
164 #define NAME_ULAW "u Law"
165 #define NAME_ADPCM "ADPCM"
166 #define NAME_FLOAT "Float"
167
168
169 class File;
170 //result<0: continue skimming, result>=0: exit return code
171 typedef int (*skim_fn)(void *vp, int track);
172
173 void get_exe_path(char *result);
174
175 #endif