r125: This commit was manufactured by cvs2svn to create tag 'r1_1_7-last'.
[cinelerra_cv/mob.git] / hvirtual / cinelerra / file.inc
blob95d79437eded2c828923cdded2a1d6614bda51a0
1 #ifndef FILE_INC
2 #define FILE_INC
4 #include <libintl.h>
5 #define _(String) gettext(String)
6 #define gettext_noop(String) String
7 #define N_(String) gettext_noop (String)
10 // Return values for open_file
11 #define FILE_OK 0
12 #define FILE_NOT_FOUND 1
13 #define FILE_UNRECOGNIZED_CODEC 2
14 #define FILE_IS_XML 3
16 #define FILE_UNKNOWN                    0
17 #define FILE_AIFF                       10
18 #define FILE_AMPEG                      16    // For encoding only
19 #define FILE_AU                         9
20 #define FILE_AVI_ARNE1          20    // DV type 1
21 #define FILE_AVI                24    // Heroine Virtual
22 #define FILE_AVI_ARNE2          19    // DV type 2
23 #define FILE_AVI_AVIFILE        21
24 #define FILE_AVI_LAVTOOLS       12    // MJPEG type 1
25 #define FILE_GIF                        7
26 #define FILE_JPEG                       5
27 #define FILE_JPEG_LIST                  8
28 #define FILE_MOV                        3
29 #define FILE_MPEG                       15    // For decoding only
30 #define FILE_PCM                        1
31 #define FILE_PLUGIN                     0x8000
32 #define FILE_PNG                        4
33 #define FILE_PNG_LIST                   23
34 #define FILE_SND                        11
35 #define FILE_TGA                        14
36 #define FILE_TGA_LIST                   13
37 #define FILE_TIFF                       6
38 #define FILE_TIFF_LIST                  22
39 #define FILE_VMPEG                      17    // For encoding only
40 #define FILE_VORBIS                     18
41 #define FILE_WAV                        2
43 // For formats supported by plugins, the format number is the plugin number in the 
44 // plugin list ORed with 0x8000.
46 #if 0
47 N_("Apple/SGI AIFF")
48 N_("MPEG Audio")    // For encoding only
49 N_("Sun/NeXT AU")
50 N_("Microsoft AVI")
51 N_("Microsoft WAV")
52 N_("AVI Arne Type 1")
53 N_("AVI DV Type 2")
54 N_("AVI Avifile")
55 N_("AVI Lavtools")
56 N_("JPEG Sequence")
57 N_("JPEG")
58 N_("Quicktime for Linux")
59 N_("MPEG")          // For decoding only
60 N_("Raw PCM")
61 N_("PNG Sequence")
62 N_("PNG")
63 N_("Unknown sound")
64 N_("TGA Sequence")
65 N_("TGA")
66 N_("TIFF")
67 N_("TIFF Sequence")
68 N_("MPEG Video")    // For encoding only
69 N_("OGG Vorbis")
70 #endif
72 #define AIFF_NAME "Apple/SGI AIFF"
73 #define AMPEG_NAME "MPEG Audio"    // For encoding only
74 #define AU_NAME "Sun/NeXT AU"
75 #define AVI_NAME "Microsoft AVI"
76 #define WAV_NAME "Microsoft WAV"
77 #define AVI_ARNE1_NAME "AVI Arne Type 1"
78 #define AVI_ARNE2_NAME "AVI DV Type 2"
79 #define AVI_AVIFILE_NAME "AVI Avifile"
80 #define AVI_LAVTOOLS_NAME "AVI Lavtools"
81 #define JPEG_LIST_NAME "JPEG Sequence"
82 #define JPEG_NAME "JPEG"
83 #define MOV_NAME "Quicktime for Linux"
84 #define MPEG_NAME "MPEG"           // For decoding only
85 #define PCM_NAME "Raw PCM"
86 #define PNG_LIST_NAME "PNG Sequence"
87 #define PNG_NAME "PNG"
88 #define SND_NAME "Unknown sound"
89 #define TGA_LIST_NAME "TGA Sequence"
90 #define TGA_NAME "TGA"
91 #define TIFF_NAME "TIFF"
92 #define TIFF_LIST_NAME "TIFF Sequence"
93 #define VMPEG_NAME "MPEG Video"    // For encoding only
94 #define VORBIS_NAME "OGG Vorbis"
96 #define BITSLINEAR8    8
97 #define BITSLINEAR16   16
98 #define BITSLINEAR24   24
99 #define BITSLINEAR32   32
100 #define BITS_ADPCM     252
101 #define BITSFLOAT      253
102 #define BITSULAW       254
103 #define BITSIMA4       255
105 #if 0
106 N_("8 Bit Linear")
107 N_("16 Bit Linear")
108 N_("24 Bit Linear")
109 N_("32 Bit Linear")
110 N_("u Law")
111 N_("IMA 4")
112 N_("ADPCM")
113 N_("Float")
115 // Video formats not part of Quicktime
116 N_("RGB ALPHA")
117 N_("PNG ALPHA")
118 #endif
120 #define NAME_8BIT "8 Bit Linear"
121 #define NAME_16BIT "16 Bit Linear"
122 #define NAME_24BIT "24 Bit Linear"
123 #define NAME_32BIT "32 Bit Linear"
124 #define NAME_ULAW "u Law"
125 #define NAME_IMA4 "IMA 4"
126 #define NAME_ADPCM "ADPCM"
127 #define NAME_FLOAT "Float"
129 // Video formats not part of Quicktime
130 #define MOV_RGBA "RGB ALPHA"
131 #define MOV_PNGA "PNG ALPHA"
134 class File;
136 #endif