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
27 // Return values for open_file
29 #define FILE_NOT_FOUND 1
30 #define FILE_UNRECOGNIZED_CODEC 2
33 // Numeric codes for each file format
34 // They're stored in XML files, so they have to be fixed.
35 #define FILE_PLUGIN 0x8000
36 #define FILE_UNKNOWN 0
37 // Libzmpeg3 decoding and transport stream capture only
44 #define FILE_JPEG_LIST 8
48 #define FILE_TGA_LIST 13
51 #define FILE_AMPEG 16 // For encoding only
52 #define FILE_VMPEG 17 // For encoding only
54 #define FILE_TIFF_LIST 22
55 #define FILE_PNG_LIST 23
56 #define FILE_AC3 25 // AC3 encoding
58 #define FILE_EXR_LIST 27
61 #define FILE_VORBIS 31
63 #define FILE_FFMPEG 33
65 #define FILE_CR2_LIST 35
66 #define FILE_GIF_LIST 36
69 // For formats supported by plugins, the format number is the plugin number in the
70 // plugin list ORed with 0x8000.
86 N_("MPEG Audio") // For encoding only
87 N_("MPEG") // For decoding only
88 N_("MPEG Video") // For encoding only
89 N_("OGG Theora/Vorbis")
90 N_("OGG Vorbis") // For decoding only
103 #define AC3_NAME "AC3"
104 #define AIFF_NAME "Apple/SGI AIFF"
105 #define AMPEG_NAME "MPEG Audio" // For encoding only
106 #define AU_NAME "Sun/NeXT AU"
107 #define AVI_ARNE1_NAME "AVI Arne Type 1"
108 #define AVI_ARNE2_NAME "AVI DV Type 2"
109 #define AVI_AVIFILE_NAME "AVI Avifile"
110 #define AVI_LAVTOOLS_NAME "AVI Lavtools"
111 #define CR2_LIST_NAME "CR2 Sequence"
112 #define CR2_NAME "Raw Camera"
113 #define DBASE_NAME "DB"
114 #define EXR_LIST_NAME "EXR Sequence"
115 #define EXR_NAME "EXR"
116 #define FFMPEG_NAME "FFMPEG"
117 #define FLAC_NAME "FLAC"
118 #define JPEG_LIST_NAME "JPEG Sequence"
119 #define JPEG_NAME "JPEG"
120 #define MPEG_NAME "MPEG Stream" // For capture only
121 #define OGG_NAME "OGG Theora/Vorbis"
122 #define PCM_NAME "Raw PCM"
123 #define PNG_LIST_NAME "PNG Sequence"
124 #define PNG_NAME "PNG"
125 #define RAWDV_NAME "Raw DV"
126 #define SCENE_NAME "Text To Movie"
127 #define SND_NAME "Unknown sound"
128 #define TGA_LIST_NAME "TGA Sequence"
129 #define TGA_NAME "TGA"
130 #define TIFF_LIST_NAME "TIFF Sequence"
131 #define TIFF_NAME "TIFF"
132 #define VMPEG_NAME "MPEG Video" // For encoding only
133 #define VORBIS_NAME "OGG Vorbis"
134 #define WAV_NAME "Microsoft WAV"
136 #define BITSLINEAR8 8
137 #define BITSLINEAR16 16
138 #define BITSLINEAR24 24
139 #define BITSLINEAR32 32
140 #define BITS_ADPCM 252
141 #define BITSFLOAT 253
158 #define NAME_8BIT "8 Bit Linear"
159 #define NAME_16BIT "16 Bit Linear"
160 #define NAME_24BIT "24 Bit Linear"
161 #define NAME_32BIT "32 Bit Linear"
162 #define NAME_ULAW "u Law"
163 #define NAME_ADPCM "ADPCM"
164 #define NAME_FLOAT "Float"
168 //result<0: continue skimming, result>=0: exit return code
169 typedef int (*skim_fn)(void *vp, int track);