3 * Copyright (C) 2010 Adam Williams <broadcast at earthling dot net>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 #include "arraylist.h"
28 #include "bcwindowbase.inc"
31 #include "filexml.inc"
32 #include "indexable.h"
33 #include "indexfile.inc"
34 #include "indexstate.inc"
36 #include "pluginserver.inc"
40 #define TC_DROPFRAME 0
41 #define TC_NONDROPFRAME 1
45 class Asset : public Indexable, public ListItem<Asset>
50 Asset(const char *path);
51 Asset(const int plugin_type, const char *plugin_path);
55 int dump(FILE *fp=stdout);
58 void copy_from(Asset *asset, int do_index);
59 void copy_location(Asset *asset);
60 void copy_format(Asset *asset, int do_index = 1);
61 void copy_index(Asset *asset);
62 int64_t get_index_offset(int channel);
63 int64_t get_index_size(int channel);
64 // Get an english description of the compression. Used by AssetEdit
65 char* get_compression_text(int audio, int video);
67 // Load and save parameters for a render dialog
68 // Used by render, record, menueffects, preferences
69 void load_defaults(BC_Hash *defaults,
70 const char *prefix /* = 0 */,
71 int do_format /* = 0 */,
76 void save_defaults(BC_Hash *defaults,
77 const char *prefix /* = 0 */,
78 int do_format, /* Don't save format which is autodetected by file loader */
79 int do_compression, /* Don't save compression which is fixed by driver */
83 char* construct_param(const char *param, const char *prefix, char *return_value);
88 // Executed during index building only
89 int equivalent(Asset &asset, int test_audio, int test_video, EDL *edl=0);
90 // Return 1 if the paths match
91 int test_path(const char *path);
92 int read(FileXML *file,
93 int expand_relative = 1);
94 int read_audio(FileXML *xml);
95 int read_video(FileXML *xml);
96 int read_index(FileXML *xml);
100 // Output path is the path of the output file if name truncation is desired.
101 // It is a "" if; complete names should be used.
102 int write(FileXML *file, int include_index, const char *output_path);
105 int get_audio_channels();
106 int get_sample_rate();
107 int64_t get_audio_samples();
112 double get_frame_rate();
113 int get_video_layers();
114 int64_t get_video_frames();
116 void write_index(char *path, int data_bytes);
118 // Necessary for renderfarm to get encoding parameters
119 int write_audio(FileXML *xml);
120 int write_video(FileXML *xml);
121 int write_index(FileXML *xml);
123 double total_length_framealigned(double fps);
125 // Format of file. An enumeration from file.inc.
128 // contains audio data
137 // String or FourCC describing compression
138 char acodec[BCTEXTLEN];
140 int64_t audio_length;
142 // contains video data, single frame data set
143 int video_data, single_frame;
147 int actual_width, actual_height;
149 // String or FourCC describing compression
150 char vcodec[BCTEXTLEN];
153 // -1 means a still photo
154 int64_t video_length;
161 // mpeg audio information
164 int ampeg_derivative;
166 // Vorbis compression
167 int vorbis_min_bitrate;
169 int vorbis_max_bitrate;
172 // Theora compression
173 int theora_fix_bitrate;
176 int theora_sharpness;
177 int theora_keyframe_frequency;
178 int theora_keyframe_force_frequency;
181 // Set by package render during file creation. -1 means square pixels.
184 // for the interlace mode
185 int interlace_autofixoption;
187 int interlace_fixmethod;
188 // for jpeg compression
191 // for mpeg video compression
192 int vmpeg_iframe_distance;
193 int vmpeg_progressive;
198 int vmpeg_derivative;
199 int vmpeg_quantization;
201 int vmpeg_fix_bitrate;
206 int vmpeg_field_order;
207 int vmpeg_pframe_distance;
209 // ffmpeg muxer file extension
210 char fformat[BCSTRLEN];
211 char ff_video_options[BCTEXTLEN];
212 char ff_pixel_format[BCSTRLEN];
213 int ff_video_bitrate, ff_video_quality;
214 char ff_audio_options[BCTEXTLEN];
215 char ff_sample_format[BCSTRLEN];
216 int ff_audio_bitrate, ff_audio_quality;
218 // PNG video compression
221 // EXR video compression
225 // TIFF video compression. An enumeration from filetiff.h
227 int tiff_compression;
231 // Insert tag for spherical playback
232 int mov_sphere, jpeg_sphere;
234 // Image file sequences. Background rendering doesn't want to write a
235 // sequence header but instead wants to start the sequence numbering at a certain
236 // number. This ensures deletion of all the frames which aren't being used.
237 // We still want sequence headers sometimes because loading a directory full of images
238 // for editing would create new assets for every image.