6 #include "bcwindowbase.inc"
11 #include "pluginserver.inc"
17 #define TC_DROPFRAME 0
18 #define TC_NONDROPFRAME 1
22 // Asset can be one of the following:
23 // 1) a pure media file
26 // The EDL can reference itself if it contains a media file
27 class Asset
: public ListItem
<Asset
>, public GarbageObject
32 Asset(const char *path
);
33 Asset(const int plugin_type
, const char *plugin_path
);
39 void copy_from(Asset
*asset
, int do_index
);
40 void copy_location(Asset
*asset
);
41 void copy_format(Asset
*asset
, int do_index
= 1);
42 void copy_index(Asset
*asset
);
43 int64_t get_index_offset(int channel
);
44 int64_t get_index_size(int channel
);
45 // Get an english description of the compression. Used by AssetEdit
46 char* get_compression_text(int audio
, int video
);
48 // Load and save parameters for a render dialog
49 // Used by render, record, menueffects, preferences
50 void load_defaults(BC_Hash
*defaults
,
51 char *prefix
/* = 0 */,
52 int do_format
/* = 0 */,
57 void save_defaults(BC_Hash
*defaults
,
58 char *prefix
/* = 0 */,
59 int do_format
, /* Don't save format which is autodetected by file loader */
60 int do_compression
, /* Don't save compression which is fixed by driver */
64 char* construct_param(char *param
, char *prefix
, char *return_value
);
69 // Executed during index building only
70 void update_index(Asset
*asset
);
71 int equivalent(Asset
&asset
,
74 Asset
& operator=(Asset
&asset
);
75 int operator==(Asset
&asset
);
76 int operator!=(Asset
&asset
);
77 int test_path(const char *path
);
78 int test_plugin_title(const char *path
);
79 int read(FileXML
*file
, int expand_relative
= 1);
80 int read_audio(FileXML
*xml
);
81 int read_video(FileXML
*xml
);
82 int read_index(FileXML
*xml
);
83 int reset_index(); // When the index file is wrong, reset the asset values
85 int set_timecode(char *tc
, int format
, int end
);
88 // Output path is the path of the output file if name truncation is desired.
89 // It is a "" if; complete names should be used.
90 int write(FileXML
*file
,
93 // Write the index data and asset info. Used by IndexThread.
94 int write_index(char *path
, int data_bytes
);
97 // Necessary for renderfarm to get encoding parameters
98 int write_audio(FileXML
*xml
);
99 int write_video(FileXML
*xml
);
100 int write_index(FileXML
*xml
);
101 int update_path(char *new_path
);
103 double total_length_framealigned(double fps
);
106 char path
[BCTEXTLEN
];
109 char pipe
[BCTEXTLEN
];
112 // Folder in resource manager
113 char folder
[BCTEXTLEN
];
115 // Format of file. An enumeration from file.inc.
118 // contains audio data
127 // String or FourCC describing compression
128 char acodec
[BCTEXTLEN
];
131 int64_t audio_length
;
144 // contains video data
149 // Timecode information. User setable, in case of errors in source
150 char reel_name
[BCTEXTLEN
];
157 // String or FourCC describing compression
158 char vcodec
[BCTEXTLEN
];
160 // Length in units of asset
161 int64_t video_length
;
167 // mpeg audio information
170 int ampeg_derivative
;
172 // Vorbis compression
173 int vorbis_min_bitrate
;
175 int vorbis_max_bitrate
;
178 // Theora compression
179 int theora_fix_bitrate
;
182 int theora_sharpness
;
183 int theora_keyframe_frequency
;
184 int theora_keyframe_force_frequency
;
195 // Set by package render during file creation. -1 means square pixels.
198 // for the interlace mode
199 int interlace_autofixoption
;
201 int interlace_fixmethod
;
203 // for jpeg compression
206 // for mpeg video compression
207 int vmpeg_iframe_distance
;
208 int vmpeg_progressive
;
213 int vmpeg_derivative
;
214 int vmpeg_quantization
;
216 int vmpeg_fix_bitrate
;
221 int vmpeg_field_order
;
222 int vmpeg_pframe_distance
;
231 // Divx video compression
234 int divx_rc_reaction_ratio
;
235 int divx_rc_reaction_period
;
236 int divx_max_key_interval
;
237 int divx_max_quantizer
;
238 int divx_min_quantizer
;
241 int divx_fix_bitrate
;
243 // h264 video compression
246 int h264_fix_bitrate
;
248 // Divx video decompression
249 int divx_use_deblocking
;
251 // PNG video compression
254 // EXR video compression
258 // TIFF video compression. An enumeration from filetiff.h
260 int tiff_compression
;
264 int ms_bitrate_tolerance
;
275 // Image file sequences. Background rendering doesn't want to write a
276 // sequence header but instead wants to start the sequence numbering at a certain
277 // number. This ensures deletion of all the frames which aren't being used.
278 // We still want sequence headers sometimes because loading a directory full of images
279 // for editing would create new assets for every image.
284 // Edits store data for the transition
287 int index_status
; // Macro from assets.inc
288 int64_t index_zoom
; // zoom factor of index data
289 int64_t index_start
; // byte start of index data in the index file
290 // Total bytes in source file when the index was buillt
292 int64_t index_end
, old_index_end
; // values for index build
293 // offsets of channels in index buffer in floats
294 int64_t *index_offsets
;
295 // Sizes of channels in index buffer in floats. This allows
296 // variable channel size.
297 int64_t *index_sizes
;
298 // [ index channel ][ index channel ]
299 // [high][low][high][low][high][low][high][low]