6 // Return values for open_file
8 #define FILE_NOT_FOUND 1
9 #define FILE_UNRECOGNIZED_CODEC 2
12 #define FILE_UNKNOWN 0
14 #define FILE_AMPEG 16 // For encoding only
15 #define FILE_AC3 25 // AC3 encoding
17 #define FILE_AVI_ARNE1 20 // DV type 1
18 #define FILE_AVI 24 // Heroine Virtual
19 #define FILE_AVI_ARNE2 19 // DV type 2
20 #define FILE_AVI_AVIFILE 21
21 #define FILE_AVI_LAVTOOLS 12 // MJPEG type 1
24 #define FILE_JPEG_LIST 8
26 #define FILE_MPEG 15 // Libmpeg3 decoding only
28 #define FILE_PLUGIN 0x8000
30 #define FILE_PNG_LIST 23
33 #define FILE_TGA_LIST 13
35 #define FILE_TIFF_LIST 22
36 #define FILE_VMPEG 17 // For encoding only
37 #define FILE_VORBIS 18
40 #define FILE_EXR_LIST 27
42 // For formats supported by plugins, the format number is the plugin number in the
43 // plugin list ORed with 0x8000.
48 N_("MPEG Audio") // For encoding only
58 N_("Quicktime for Linux")
59 N_("MPEG") // For decoding only
68 N_("MPEG Video") // For encoding only
74 #define AC3_NAME "AC3"
75 #define AIFF_NAME "Apple/SGI AIFF"
76 #define AMPEG_NAME "MPEG Audio" // For encoding only
77 #define AU_NAME "Sun/NeXT AU"
78 #define AVI_NAME "Microsoft AVI"
79 #define WAV_NAME "Microsoft WAV"
80 #define AVI_ARNE1_NAME "AVI Arne Type 1"
81 #define AVI_ARNE2_NAME "AVI DV Type 2"
82 #define AVI_AVIFILE_NAME "AVI Avifile"
83 #define AVI_LAVTOOLS_NAME "AVI Lavtools"
84 #define JPEG_LIST_NAME "JPEG Sequence"
85 #define JPEG_NAME "JPEG"
86 #define MOV_NAME "Quicktime for Linux"
87 #define MPEG_NAME "MPEG" // For decoding only
88 #define PCM_NAME "Raw PCM"
89 #define PNG_LIST_NAME "PNG Sequence"
90 #define PNG_NAME "PNG"
91 #define SND_NAME "Unknown sound"
92 #define TGA_LIST_NAME "TGA Sequence"
93 #define TGA_NAME "TGA"
94 #define TIFF_NAME "TIFF"
95 #define TIFF_LIST_NAME "TIFF Sequence"
96 #define VMPEG_NAME "MPEG Video" // For encoding only
97 #define VORBIS_NAME "OGG Vorbis"
98 #define EXR_NAME "EXR"
99 #define EXR_LIST_NAME "EXR List"
101 #define BITSLINEAR8 8
102 #define BITSLINEAR16 16
103 #define BITSLINEAR24 24
104 #define BITSLINEAR32 32
105 #define BITS_ADPCM 252
106 #define BITSFLOAT 253
120 // Video formats not part of Quicktime
125 #define NAME_8BIT "8 Bit Linear"
126 #define NAME_16BIT "16 Bit Linear"
127 #define NAME_24BIT "24 Bit Linear"
128 #define NAME_32BIT "32 Bit Linear"
129 #define NAME_ULAW "u Law"
130 #define NAME_IMA4 "IMA 4"
131 #define NAME_ADPCM "ADPCM"
132 #define NAME_FLOAT "Float"
134 // Video formats not part of Quicktime
135 #define MOV_RGBA "RGB ALPHA"
136 #define MOV_PNGA "PNG ALPHA"