fix mask vframe setup, add unshared vframe constructor
[goodguy/history.git] / cinelerra-5.1 / cinelerra / file.C
1 /*
2  * CINELERRA
3  * Copyright (C) 2010 Adam Williams <broadcast at earthling dot net>
4  *
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.
9  *
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.
14  *
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
18  *
19  */
20
21 #include <stdio.h>
22 #include <stdint.h>
23 #include <stdlib.h>
24 #include <unistd.h>
25 #include <string.h>
26 #include <stdarg.h>
27 #include <ctype.h>
28 #include <limits.h>
29 // work arounds (centos)
30 #include <lzma.h>
31 #ifndef INT64_MAX
32 #define INT64_MAX 9223372036854775807LL
33 #endif
34
35 #include "asset.h"
36 #include "bchash.h"
37 #include "bcsignals.h"
38 #include "byteorder.h"
39 #include "cache.inc"
40 #include "condition.h"
41 #include "errorbox.h"
42 #include "fileac3.h"
43 #include "filebase.h"
44 #include "filecr2.h"
45 #include "filedb.h"
46 #include "filedv.h"
47 #include "fileexr.h"
48 #include "fileffmpeg.h"
49 #include "fileflac.h"
50 #include "filegif.h"
51 #include "file.h"
52 #include "filejpeg.h"
53 #include "filempeg.h"
54 #undef HAVE_STDLIB_H // automake conflict
55 #include "fileogg.h"
56 #include "filepng.h"
57 #include "filescene.h"
58 #include "filesndfile.h"
59 #include "filetga.h"
60 #include "filethread.h"
61 #include "filetiff.h"
62 #include "filevorbis.h"
63 #include "filexml.h"
64 #include "formatwindow.h"
65 #include "formattools.h"
66 #include "framecache.h"
67 #include "language.h"
68 #include "mainprogress.inc"
69 #include "mutex.h"
70 #include "mwindow.h"
71 #include "packagingengine.h"
72 #include "pluginserver.h"
73 #include "preferences.h"
74 #include "probeprefs.h"
75 #include "samples.h"
76 #include "vframe.h"
77
78 //static int temp_debug = 0;
79 //suppress noref warning
80 void *vorbis0_ov_callbacks[] = {
81  &OV_CALLBACKS_DEFAULT, &OV_CALLBACKS_NOCLOSE,
82  &OV_CALLBACKS_STREAMONLY, &OV_CALLBACKS_STREAMONLY_NOCLOSE,
83 };
84
85 File::File()
86 {
87         cpus = 1;
88         asset = new Asset;
89         format_completion = new Condition(1, "File::format_completion");
90         write_lock = new Condition(1, "File::write_lock");
91         frame_cache = new FrameCache;
92         reset_parameters();
93 }
94
95 File::~File()
96 {
97         if( getting_options ) {
98                 if( format_window ) format_window->set_done(0);
99                 format_completion->lock("File::~File");
100                 format_completion->unlock();
101         }
102
103         if( temp_frame ) {
104 //printf("File::~File %d temp_debug=%d\n", __LINE__, --temp_debug);
105                 delete temp_frame;
106         }
107
108         close_file(0);
109
110         asset->Garbage::remove_user();
111         delete format_completion;
112         delete write_lock;
113         delete frame_cache;
114 }
115
116 void File::reset_parameters()
117 {
118         file = 0;
119         audio_thread = 0;
120         video_thread = 0;
121         getting_options = 0;
122         format_window = 0;
123         temp_frame = 0;
124         current_sample = 0;
125         current_frame = 0;
126         current_channel = 0;
127         current_program = 0;
128         current_layer = 0;
129         normalized_sample = 0;
130         use_cache = 0;
131         preferences = 0;
132         playback_subtitle = -1;
133         interpolate_raw = 1;
134
135
136         temp_samples_buffer = 0;
137         temp_frame_buffer = 0;
138         current_frame_buffer = 0;
139         audio_ring_buffers = 0;
140         video_ring_buffers = 0;
141         video_buffer_size = 0;
142 }
143
144 int File::raise_window()
145 {
146         if( getting_options && format_window ) {
147                 format_window->raise_window();
148                 format_window->flush();
149         }
150         return 0;
151 }
152
153 void File::close_window()
154 {
155         if( getting_options ) {
156                 format_window->lock_window("File::close_window");
157                 format_window->set_done(1);
158                 format_window->unlock_window();
159                 getting_options = 0;
160         }
161 }
162
163 int File::get_options(FormatTools *format,
164         int audio_options, int video_options)
165 {
166         BC_WindowBase *parent_window = format->window;
167         //ArrayList<PluginServer*> *plugindb = format->plugindb;
168         Asset *asset = format->asset;
169
170         getting_options = 1;
171         format_completion->lock("File::get_options");
172         switch( asset->format ) {
173         case FILE_AC3:
174                 FileAC3::get_parameters(parent_window,
175                         asset,
176                         format_window,
177                         audio_options,
178                         video_options);
179                 break;
180 #ifdef HAVE_DV
181         case FILE_RAWDV:
182                 FileDV::get_parameters(parent_window, asset, format_window,
183                         audio_options, video_options);
184                 break;
185 #endif
186         case FILE_PCM:
187         case FILE_WAV:
188         case FILE_AU:
189         case FILE_AIFF:
190         case FILE_SND:
191                 FileSndFile::get_parameters(parent_window, asset, format_window,
192                         audio_options, video_options);
193                 break;
194         case FILE_FFMPEG:
195                 FileFFMPEG::get_parameters(parent_window, asset, format_window,
196                         audio_options, video_options);
197                 break;
198         case FILE_AMPEG:
199         case FILE_VMPEG:
200                 FileMPEG::get_parameters(parent_window, asset, format_window,
201                         audio_options, video_options);
202                 break;
203         case FILE_JPEG:
204         case FILE_JPEG_LIST:
205                 FileJPEG::get_parameters(parent_window, asset, format_window,
206                         audio_options, video_options);
207                 break;
208 #ifdef HAVE_OPENEXR
209         case FILE_EXR:
210         case FILE_EXR_LIST:
211                 FileEXR::get_parameters(parent_window, asset, format_window,
212                         audio_options, video_options);
213                 break;
214 #endif
215         case FILE_FLAC:
216                 FileFLAC::get_parameters(parent_window, asset, format_window,
217                         audio_options, video_options);
218                 break;
219         case FILE_PNG:
220         case FILE_PNG_LIST:
221                 FilePNG::get_parameters(parent_window, asset, format_window,
222                         audio_options, video_options);
223                 break;
224         case FILE_TGA:
225         case FILE_TGA_LIST:
226                 FileTGA::get_parameters(parent_window, asset, format_window,
227                         audio_options, video_options);
228                 break;
229         case FILE_TIFF:
230         case FILE_TIFF_LIST:
231                 FileTIFF::get_parameters(parent_window, asset, format_window,
232                         audio_options, video_options);
233                 break;
234         case FILE_OGG:
235                 FileOGG::get_parameters(parent_window, asset, format_window,
236                         audio_options, video_options);
237                 break;
238         default:
239                 break;
240         }
241
242         if( !format_window ) {
243                 ErrorBox *errorbox = new ErrorBox(_(PROGRAM_NAME ": Error"),
244                         parent_window->get_abs_cursor_x(1),
245                         parent_window->get_abs_cursor_y(1));
246                 format_window = errorbox;
247                 getting_options = 1;
248                 if( audio_options )
249                         errorbox->create_objects(_("This format doesn't support audio."));
250                 else
251                 if( video_options )
252                         errorbox->create_objects(_("This format doesn't support video."));
253                 errorbox->run_window();
254                 delete errorbox;
255         }
256
257         getting_options = 0;
258         format_window = 0;
259         format_completion->unlock();
260         return 0;
261 }
262
263
264
265
266
267
268
269
270
271
272 int File::set_processors(int cpus)   // Set the number of cpus for certain codecs
273 {
274         if( cpus > 8 )          // mpegvideo max_threads = 16, more causes errs
275                 cpus = 8;       //  8 cpus ought to decode just about anything
276 // Set all instances so gets work.
277         this->cpus = cpus;
278
279         return 0;
280 }
281
282 int File::set_preload(int64_t size)
283 {
284         this->playback_preload = size;
285         return 0;
286 }
287
288 void File::set_subtitle(int value)
289 {
290         this->playback_subtitle = value;
291         if( file ) file->set_subtitle(value);
292 }
293
294 void File::set_interpolate_raw(int value)
295 {
296         this->interpolate_raw = value;
297 }
298
299 void File::set_white_balance_raw(int value)
300 {
301         this->white_balance_raw = value;
302 }
303
304 void File::set_cache_frames(int value)
305 {
306 // caching only done locally
307         if( !video_thread )
308                 use_cache = value;
309 }
310
311 int File::purge_cache()
312 {
313 // caching only done locally
314         int result = 0;
315         if( frame_cache->cache_items() > 0 ) {
316                 frame_cache->remove_all();
317                 result = 1;
318         }
319         return result;
320 }
321
322 int File::delete_oldest()
323 {
324 // return the number of bytes freed
325         return frame_cache->delete_oldest();
326 }
327
328 // file driver in order of probe precidence
329 //  can be reordered in preferences->interface
330 const char *File::default_probes[] = { 
331         "FFMPEG_Early",
332         "Scene", 
333         "DB",
334 #ifdef HAVE_DV 
335         "DV",   
336 #endif 
337         "SndFile",
338         "PNG",
339         "JPEG",
340         "GIF",
341 #ifdef HAVE_OPENEXR
342         "EXR",
343 #endif
344         "FLAC",
345         "CR2",
346         "TGA",
347         "TIFF",
348         "OGG",
349         "Vorbis",
350         "MPEG",
351         "EDL",
352         "FFMPEG_Late", 
353 }; 
354 const int File::nb_probes =
355         sizeof(File::default_probes)/sizeof(File::default_probes[0]); 
356
357
358 int File::probe()
359 {
360         FILE *fp = fopen(this->asset->path, "rb");
361         if( !fp ) return FILE_NOT_FOUND;
362         char data[16];
363         memset(data,0,sizeof(data));
364         int ret = fread(data, 1, 16, fp);
365         fclose(fp);
366         if( !ret ) return FILE_NOT_FOUND;
367
368         for( int i=0; i<preferences->file_probes.size(); ++i ) {
369                 ProbePref *pref = preferences->file_probes[i];
370                 if( !pref->armed ) continue;
371                 if( !strncmp(pref->name,"FFMPEG",6) ) { // FFMPEG Early/Late
372                         if( !FileFFMPEG::check_sig(this->asset) ) continue;
373                         file = new FileFFMPEG(this->asset, this);
374                         return FILE_OK;
375                 }
376                 if( !strcmp(pref->name,"DB") ) { // MediaDB
377                         if( !FileDB::check_sig(this->asset) ) continue;
378                         file = new FileDB(this->asset, this);
379                         return FILE_OK;
380                 }
381                 if( !strcmp(pref->name,"Scene") ) { // scene file
382                         if( !FileScene::check_sig(this->asset, data)) continue;
383                         file = new FileScene(this->asset, this);
384                         return FILE_OK;
385                 }
386 #ifdef HAVE_DV
387                 if( !strcmp(pref->name,"DV") ) { // libdv
388                         if( !FileDV::check_sig(this->asset) ) continue;
389                         file = new FileDV(this->asset, this);
390                         return FILE_OK;
391                 }
392 #endif
393                 if( !strcmp(pref->name,"SndFile") ) { // libsndfile
394                         if( !FileSndFile::check_sig(this->asset) ) continue;
395                         file = new FileSndFile(this->asset, this);
396                         return FILE_OK;
397                 }
398                 if( !strcmp(pref->name,"PNG") ) { // PNG file
399                         if( !FilePNG::check_sig(this->asset) ) continue;
400                         file = new FilePNG(this->asset, this);
401                         return FILE_OK;
402                 }
403                 if( !strcmp(pref->name,"JPEG") ) { // JPEG file
404                         if( !FileJPEG::check_sig(this->asset) ) continue;
405                         file = new FileJPEG(this->asset, this);
406                         return FILE_OK;
407                 }
408                 if( !strcmp(pref->name,"GIF") ) { // GIF file
409                         if( !FileGIF::check_sig(this->asset)) continue;
410                         file = new FileGIF(this->asset, this);
411                         return FILE_OK;
412                 }
413 #ifdef HAVE_EXR
414                 if( !strcmp(pref->name,"EXR") ) { // EXR file
415                         if( !FileEXR::check_sig(this->asset, data)) continue;
416                         file = new FileEXR(this->asset, this);
417                         return FILE_OK;
418                 }
419 #endif
420                 if( !strcmp(pref->name,"FLAC") ) { // FLAC file
421                         if( !FileFLAC::check_sig(this->asset, data)) continue;
422                         file = new FileFLAC(this->asset, this);
423                         return FILE_OK;
424                 }
425                 if( !strcmp(pref->name,"CR2") ) { // CR2 file
426                         if( !FileCR2::check_sig(this->asset)) continue;
427                         file = new FileCR2(this->asset, this);
428                         return FILE_OK;
429                 }
430                 if( !strcmp(pref->name,"TGA") ) { // TGA file
431                         if( !FileTGA::check_sig(this->asset) ) continue;
432                         file = new FileTGA(this->asset, this);
433                         return FILE_OK;
434                 }
435                 if( !strcmp(pref->name,"TIFF") ) { // TIFF file
436                         if( !FileTIFF::check_sig(this->asset) ) continue;
437                         file = new FileTIFF(this->asset, this);
438                         return FILE_OK;
439                 }
440                 if( !strcmp(pref->name,"OGG") ) { // OGG file
441                         if( !FileOGG::check_sig(this->asset) ) continue;
442                         file = new FileOGG(this->asset, this);
443                         return FILE_OK;
444                 }
445                 if( !strcmp(pref->name,"Vorbis") ) { // VorbisFile file
446                         if( !FileVorbis::check_sig(this->asset) ) continue;
447                         file = new FileVorbis(this->asset, this);
448                         return FILE_OK;
449                 }
450                 if( !strcmp(pref->name,"MPEG") ) { // MPEG file
451                         if( !FileMPEG::check_sig(this->asset) ) continue;
452                         file = new FileMPEG(this->asset, this);
453                         return FILE_OK;
454                 }
455                 if( !strcmp(pref->name,"EDL") ) { // XML file
456                         if( data[0] != '<' ) continue;
457                         if( !strncmp(&data[1],"EDL>",4) ||
458                             !strncmp(&data[1],"HTAL>",5) ||
459                             !strncmp(&data[1],"?xml",4) )
460                                 return FILE_IS_XML;
461                 }
462         }
463         return FILE_UNRECOGNIZED_CODEC; // maybe PCM file ?
464 }
465
466 int File::open_file(Preferences *preferences,
467         Asset *asset,
468         int rd,
469         int wr)
470 {
471         const int debug = 0;
472
473         this->preferences = preferences;
474         this->asset->copy_from(asset, 1);
475         this->rd = rd;
476         this->wr = wr;
477         file = 0;
478
479         if( debug ) printf("File::open_file %p %d\n", this, __LINE__);
480
481         switch( this->asset->format ) {
482 // get the format now
483 // If you add another format to case 0, you also need to add another case for the
484 // file format #define.
485         case FILE_UNKNOWN: {
486                 int ret = probe();
487                 if( ret != FILE_OK ) return ret;
488                 break; }
489 // format already determined
490         case FILE_AC3:
491                 file = new FileAC3(this->asset, this);
492                 break;
493
494         case FILE_SCENE:
495                 file = new FileScene(this->asset, this);
496                 break;
497
498         case FILE_FFMPEG:
499                 file = new FileFFMPEG(this->asset, this);
500                 break;
501
502         case FILE_PCM:
503         case FILE_WAV:
504         case FILE_AU:
505         case FILE_AIFF:
506         case FILE_SND:
507 //printf("File::open_file 1\n");
508                 file = new FileSndFile(this->asset, this);
509                 break;
510
511         case FILE_PNG:
512         case FILE_PNG_LIST:
513                 file = new FilePNG(this->asset, this);
514                 break;
515
516         case FILE_JPEG:
517         case FILE_JPEG_LIST:
518                 file = new FileJPEG(this->asset, this);
519                 break;
520
521         case FILE_GIF:
522         case FILE_GIF_LIST:
523                 file = new FileGIF(this->asset, this);
524                 break;
525 #ifdef HAVE_OPENEXR
526         case FILE_EXR:
527         case FILE_EXR_LIST:
528                 file = new FileEXR(this->asset, this);
529                 break;
530 #endif
531         case FILE_FLAC:
532                 file = new FileFLAC(this->asset, this);
533                 break;
534
535         case FILE_CR2:
536         case FILE_CR2_LIST:
537                 file = new FileCR2(this->asset, this);
538                 break;
539
540         case FILE_TGA_LIST:
541         case FILE_TGA:
542                 file = new FileTGA(this->asset, this);
543                 break;
544
545         case FILE_TIFF:
546         case FILE_TIFF_LIST:
547                 file = new FileTIFF(this->asset, this);
548                 break;
549
550         case FILE_DB:
551                 file = new FileDB(this->asset, this);
552                 break;
553
554         case FILE_MPEG:
555         case FILE_AMPEG:
556         case FILE_VMPEG:
557                 file = new FileMPEG(this->asset, this);
558                 break;
559
560         case FILE_OGG:
561                 file = new FileOGG(this->asset, this);
562                 break;
563
564         case FILE_VORBIS:
565                 file = new FileVorbis(this->asset, this);
566                 break;
567 #ifdef HAVE_DV
568         case FILE_RAWDV:
569                 file = new FileDV(this->asset, this);
570                 break;
571 #endif
572 // try plugins
573         default:
574                 return 1;
575                 break;
576         }
577
578
579 // Reopen file with correct parser and get header.
580         if( file->open_file(rd, wr) ) {
581                 delete file;  file = 0;
582                 return FILE_NOT_FOUND;
583         }
584
585
586
587 // Set extra writing parameters to mandatory settings.
588         if( wr ) {
589                 if( this->asset->dither ) file->set_dither();
590         }
591
592         if( rd ) {
593 // one frame image file, not brender, no specific length
594                 if( !this->asset->audio_data && this->asset->use_header &&
595                     this->asset->video_data && !this->asset->single_frame &&
596                     this->asset->video_length >= 0 && this->asset->video_length <= 1 ) {
597                         this->asset->single_frame = 1;
598                         this->asset->video_length = -1;
599                 }
600         }
601
602 // Synchronize header parameters
603         asset->copy_from(this->asset, 1);
604 //asset->dump();
605
606         if( debug ) printf("File::open_file %d file=%p\n", __LINE__, file);
607 // sleep(1);
608
609         return FILE_OK;
610 }
611
612 void File::delete_temp_samples_buffer()
613 {
614
615         if( temp_samples_buffer ) {
616                 for( int j = 0; j < audio_ring_buffers; j++ ) {
617                         for( int i = 0; i < asset->channels; i++ ) {
618                                 delete temp_samples_buffer[j][i];
619                         }
620                         delete [] temp_samples_buffer[j];
621                 }
622
623                 delete [] temp_samples_buffer;
624                 temp_samples_buffer = 0;
625                 audio_ring_buffers = 0;
626         }
627 }
628
629 void File::delete_temp_frame_buffer()
630 {
631
632         if( temp_frame_buffer ) {
633                 for( int k = 0; k < video_ring_buffers; k++ ) {
634                         for( int i = 0; i < asset->layers; i++ ) {
635                                 for( int j = 0; j < video_buffer_size; j++ ) {
636                                         delete temp_frame_buffer[k][i][j];
637                                 }
638                                 delete [] temp_frame_buffer[k][i];
639                         }
640                         delete [] temp_frame_buffer[k];
641                 }
642
643                 delete [] temp_frame_buffer;
644                 temp_frame_buffer = 0;
645                 video_ring_buffers = 0;
646                 video_buffer_size = 0;
647         }
648 }
649
650 int File::close_file(int ignore_thread)
651 {
652         const int debug = 0;
653
654         if( debug ) printf("File::close_file file=%p %d\n", file, __LINE__);
655
656         if( !ignore_thread ) {
657                 stop_audio_thread();
658                 stop_video_thread();
659         }
660
661
662         if( debug ) printf("File::close_file file=%p %d\n", file, __LINE__);
663         if( file ) {
664 // The file's asset is a copy of the argument passed to open_file so the
665 // user must copy lengths from the file's asset.
666                 if( asset && wr ) {
667                         asset->audio_length = current_sample;
668                         asset->video_length = current_frame;
669                 }
670
671                 file->close_file();
672                 delete file;
673         }
674         if( debug ) printf("File::close_file file=%p %d\n", file, __LINE__);
675
676         delete_temp_samples_buffer();
677         delete_temp_frame_buffer();
678         if( debug ) printf("File::close_file file=%p %d\n", file, __LINE__);
679
680         if( debug ) printf("File::close_file file=%p %d\n", file, __LINE__);
681
682         reset_parameters();
683         if( debug ) printf("File::close_file file=%p %d\n", file, __LINE__);
684         return 0;
685 }
686
687
688
689 int File::get_index(IndexFile *index_file, MainProgressBar *progress_bar)
690 {
691         return !file ? -1 : file->get_index(index_file, progress_bar);
692 }
693
694
695
696 int File::start_audio_thread(int buffer_size, int ring_buffers)
697 {
698         this->audio_ring_buffers = ring_buffers;
699
700
701         if( !audio_thread ) {
702                 audio_thread = new FileThread(this, 1, 0);
703                 audio_thread->start_writing(buffer_size, 0, ring_buffers, 0);
704         }
705         return 0;
706 }
707
708 int File::start_video_thread(int buffer_size,
709         int color_model,
710         int ring_buffers,
711         int compressed)
712 {
713         this->video_ring_buffers = ring_buffers;
714         this->video_buffer_size = buffer_size;
715
716         if( !video_thread ) {
717                 video_thread = new FileThread(this, 0, 1);
718                 video_thread->start_writing(buffer_size,
719                         color_model,
720                         ring_buffers,
721                         compressed);
722         }
723         return 0;
724 }
725
726 int File::start_video_decode_thread()
727 {
728 // Currently, CR2 is the only one which won't work asynchronously, so
729 // we're not using a virtual function yet.
730         if( !video_thread /* && asset->format != FILE_CR2 */ ) {
731                 video_thread = new FileThread(this, 0, 1);
732                 video_thread->start_reading();
733                 use_cache = 0;
734         }
735         return 0;
736 }
737
738 int File::stop_audio_thread()
739 {
740         if( audio_thread ) {
741                 audio_thread->stop_writing();
742                 delete audio_thread;
743                 audio_thread = 0;
744         }
745         return 0;
746 }
747
748 int File::stop_video_thread()
749 {
750         if( video_thread ) {
751                 video_thread->stop_reading();
752                 video_thread->stop_writing();
753                 delete video_thread;
754                 video_thread = 0;
755         }
756         return 0;
757 }
758
759 FileThread* File::get_video_thread()
760 {
761         return video_thread;
762 }
763
764 int File::set_channel(int channel)
765 {
766         if( file && channel < asset->channels ) {
767                 current_channel = channel;
768                 return 0;
769         }
770         else
771                 return 1;
772 }
773
774 int File::get_channel()
775 {
776         return current_channel;
777 }
778
779 // if no>=0, sets new program
780 //  returns current program
781 int File::set_program(int no)
782 {
783         int result = file ? file->set_program(no) : current_program;
784         current_program = no < 0 ? result : no;
785         return result;
786 }
787
788 int File::get_cell_time(int no, double &time)
789 {
790         return file ? file->get_cell_time(no, time) : -1;
791 }
792
793 int File::get_system_time(int64_t &tm)
794 {
795         return file ? file->get_system_time(tm) : -1;
796 }
797
798 int File::get_audio_for_video(int vstream, int astream, int64_t &channel_mask)
799 {
800         return file ? file->get_audio_for_video(vstream, astream, channel_mask) : -1;
801 }
802
803 int File::get_video_pid(int track)
804 {
805         return file ? file->get_video_pid(track) : -1;
806 }
807
808
809
810 int File::get_video_info(int track, int &pid, double &framerate,
811                 int &width, int &height, char *title)
812 {
813         return !file ? -1 :
814                  file->get_video_info(track, pid, framerate, width, height, title);
815 }
816
817 int File::select_video_stream(Asset *asset, int vstream)
818 {
819         return !file ? -1 :
820                  file->select_video_stream(asset, vstream);
821 }
822
823 int File::select_audio_stream(Asset *asset, int astream)
824 {
825         return !file ? -1 :
826                  file->select_audio_stream(asset, astream);
827 }
828
829
830 int File::get_thumbnail(int stream,
831         int64_t &position, unsigned char *&thumbnail, int &ww, int &hh)
832 {
833         return file->get_thumbnail(stream, position, thumbnail, ww, hh);
834 }
835
836 int File::set_skimming(int track, int skim, skim_fn fn, void *vp)
837 {
838         return file->set_skimming(track, skim, fn, vp);
839 }
840
841 int File::skim_video(int track, void *vp, skim_fn fn)
842 {
843         return file->skim_video(track, vp, fn);
844 }
845
846
847 int File::set_layer(int layer, int is_thread)
848 {
849         if( file && layer < asset->layers ) {
850                 if( !is_thread && video_thread ) {
851                         video_thread->set_layer(layer);
852                 }
853                 else {
854                         current_layer = layer;
855                 }
856                 return 0;
857         }
858         else
859                 return 1;
860 }
861
862 int64_t File::get_audio_length()
863 {
864         int64_t result = asset->audio_length;
865         int64_t base_samplerate = -1;
866         if( result > 0 ) {
867                 if( base_samplerate > 0 )
868                         return (int64_t)((double)result / asset->sample_rate * base_samplerate + 0.5);
869                 else
870                         return result;
871         }
872         else
873                 return -1;
874 }
875
876 int64_t File::get_video_length()
877 {
878         int64_t result = asset->video_length;
879         float base_framerate = -1;
880         if( result > 0 ) {
881                 if( base_framerate > 0 )
882                         return (int64_t)((double)result / asset->frame_rate * base_framerate + 0.5);
883                 else
884                         return result;
885         }
886         else
887                 return -1;  // infinity
888 }
889
890
891 int64_t File::get_video_position()
892 {
893         float base_framerate = -1;
894         if( base_framerate > 0 )
895                 return (int64_t)((double)current_frame / asset->frame_rate * base_framerate + 0.5);
896         else
897                 return current_frame;
898 }
899
900 int64_t File::get_audio_position()
901 {
902 //      int64_t base_samplerate = -1;
903 //      if( base_samplerate > 0 )
904 //      {
905 //              if( normalized_sample_rate == base_samplerate )
906 //                      return normalized_sample;
907 //              else
908 //                      return (int64_t)((double)current_sample /
909 //                              asset->sample_rate *
910 //                              base_samplerate +
911 //                              0.5);
912 //      }
913 //      else
914                 return current_sample;
915 }
916
917
918
919 int File::set_audio_position(int64_t position)
920 {
921         int result = 0;
922
923         if( !file ) return 1;
924
925 #define REPOSITION(x, y) \
926         (labs((x) - (y)) > 1)
927
928         float base_samplerate = asset->sample_rate;
929         current_sample = normalized_sample = position;
930
931 // printf("File::set_audio_position %d normalized_sample=%ld\n",
932 // __LINE__,
933 // normalized_sample);
934                 result = file->set_audio_position(current_sample);
935
936                 if( result )
937                         printf("File::set_audio_position position=%jd"
938                                 " base_samplerate=%f asset=%p asset->sample_rate=%d\n",
939                                 position, base_samplerate, asset, asset->sample_rate);
940
941 //printf("File::set_audio_position %d %d %d\n", current_channel, current_sample, position);
942
943         return result;
944 }
945
946 int File::set_video_position(int64_t position,
947         int is_thread)
948 {
949         int result = 0;
950         if( !file ) return 0;
951
952 // Convert to file's rate
953 //      if( base_framerate > 0 )
954 //              position = (int64_t)((double)position /
955 //                      base_framerate *
956 //                      asset->frame_rate +
957 //                      0.5);
958
959
960         if( video_thread && !is_thread ) {
961 // Call thread.  Thread calls this again to set the file state.
962                 video_thread->set_video_position(position);
963         }
964         else
965         if( current_frame != position ) {
966                 if( file ) {
967                         current_frame = position;
968                         result = file->set_video_position(current_frame);
969                 }
970         }
971
972         return result;
973 }
974
975 // No resampling here.
976 int File::write_samples(Samples **buffer, int64_t len)
977 {
978         int result = 1;
979
980         if( file ) {
981                 write_lock->lock("File::write_samples");
982
983 // Convert to arrays for backwards compatability
984                 double *temp[asset->channels];
985                 for( int i = 0; i < asset->channels; i++ ) {
986                         temp[i] = buffer[i]->get_data();
987                 }
988
989                 result = file->write_samples(temp, len);
990                 current_sample += len;
991                 normalized_sample += len;
992                 asset->audio_length += len;
993                 write_lock->unlock();
994         }
995         return result;
996 }
997
998
999
1000
1001
1002 // Can't put any cmodel abstraction here because the filebase couldn't be
1003 // parallel.
1004 int File::write_frames(VFrame ***frames, int len)
1005 {
1006 //printf("File::write_frames %d\n", __LINE__);
1007 //PRINT_TRACE
1008 // Store the counters in temps so the filebase can choose to overwrite them.
1009         int result;
1010         int current_frame_temp = current_frame;
1011         int video_length_temp = asset->video_length;
1012
1013         write_lock->lock("File::write_frames");
1014
1015 //PRINT_TRACE
1016         result = file->write_frames(frames, len);
1017 //PRINT_TRACE
1018
1019         current_frame = current_frame_temp + len;
1020         asset->video_length = video_length_temp + len;
1021         write_lock->unlock();
1022 //PRINT_TRACE
1023         return result;
1024 }
1025
1026 // Only called by FileThread
1027 int File::write_compressed_frame(VFrame *buffer)
1028 {
1029         int result = 0;
1030         write_lock->lock("File::write_compressed_frame");
1031         result = file->write_compressed_frame(buffer);
1032         current_frame++;
1033         asset->video_length++;
1034         write_lock->unlock();
1035         return result;
1036 }
1037
1038
1039 int File::write_audio_buffer(int64_t len)
1040 {
1041         int result = 0;
1042         if( audio_thread ) {
1043                 result = audio_thread->write_buffer(len);
1044         }
1045         return result;
1046 }
1047
1048 int File::write_video_buffer(int64_t len)
1049 {
1050         int result = 0;
1051         if( video_thread ) {
1052                 result = video_thread->write_buffer(len);
1053         }
1054
1055         return result;
1056 }
1057
1058 Samples** File::get_audio_buffer()
1059 {
1060         if( audio_thread ) return audio_thread->get_audio_buffer();
1061         return 0;
1062 }
1063
1064 VFrame*** File::get_video_buffer()
1065 {
1066         if( video_thread ) {
1067                 VFrame*** result = video_thread->get_video_buffer();
1068
1069                 return result;
1070         }
1071
1072         return 0;
1073 }
1074
1075
1076 int File::read_samples(Samples *samples, int64_t len)
1077 {
1078 // Never try to read more samples than exist in the file
1079         if( asset->audio_length >= 0 && current_sample + len > asset->audio_length ) {
1080                 len = asset->audio_length - current_sample;
1081         }
1082         if( len <= 0 ) return 0;
1083
1084         int result = 0;
1085         const int debug = 0;
1086         if( debug ) PRINT_TRACE
1087
1088         if( debug ) PRINT_TRACE
1089
1090         double *buffer = samples->get_data();
1091
1092         int64_t base_samplerate = asset->sample_rate;
1093
1094         if( file ) {
1095 // Resample recursively calls this with the asset sample rate
1096                 if( base_samplerate == 0 ) base_samplerate = asset->sample_rate;
1097
1098                 if( debug ) PRINT_TRACE
1099                 result = file->read_samples(buffer, len);
1100
1101                 if( debug ) PRINT_TRACE
1102                 current_sample += len;
1103
1104                 normalized_sample += len;
1105         }
1106         if( debug ) PRINT_TRACE
1107
1108         return result;
1109 }
1110
1111 int File::read_frame(VFrame *frame, int is_thread)
1112 {
1113         const int debug = 0;
1114 //printf("File::read_frame pos=%jd cache=%d 1frame=%d\n",
1115 // current_frame, use_cache, asset->single_frame);
1116         if( video_thread && !is_thread ) return video_thread->read_frame(frame);
1117         if( !file ) return 1;
1118         if( debug ) PRINT_TRACE
1119         int result = 0;
1120         int supported_colormodel = colormodel_supported(frame->get_color_model());
1121         int advance_position = 1;
1122         int cache_active = use_cache || asset->single_frame ? 1 : 0;
1123         int64_t cache_position = !asset->single_frame ? current_frame : -1;
1124
1125 // Test cache
1126         if( cache_active && frame_cache->get_frame(frame, cache_position,
1127                         current_layer, asset->frame_rate) ) {
1128 // Can't advance position if cache used.
1129 //printf("File::read_frame %d\n", __LINE__);
1130                 advance_position = 0;
1131         }
1132 // Need temp
1133         else if( frame->get_color_model() != BC_COMPRESSED &&
1134                 (supported_colormodel != frame->get_color_model() ||
1135                 (!file->can_scale_input() &&
1136                         (frame->get_w() != asset->width ||
1137                          frame->get_h() != asset->height))) ) {
1138
1139 //                      printf("File::read_frame %d\n", __LINE__);
1140 // Can't advance position here because it needs to be added to cache
1141                 if( temp_frame ) {
1142                         if( !temp_frame->params_match(asset->width, asset->height, supported_colormodel) ) {
1143                                 delete temp_frame;
1144                                 temp_frame = 0;
1145                         }
1146                 }
1147
1148                 if( !temp_frame ) {
1149                         temp_frame = new VFrame(asset->width, asset->height, supported_colormodel, 0);
1150                 }
1151
1152 //                      printf("File::read_frame %d\n", __LINE__);
1153                 temp_frame->copy_stacks(frame);
1154                 result = file->read_frame(temp_frame);
1155                 if( !result )
1156                         frame->transfer_from(temp_frame);
1157                 else if( result && frame->get_status() > 0 )
1158                         frame->set_status(-1);
1159 //printf("File::read_frame %d\n", __LINE__);
1160         }
1161         else {
1162 // Can't advance position here because it needs to be added to cache
1163 //printf("File::read_frame %d\n", __LINE__);
1164                 result = file->read_frame(frame);
1165                 if( result && frame->get_status() > 0 )
1166                         frame->set_status(-1);
1167 //for( int i = 0; i < 100 * 1000; i++ ) ((float*)frame->get_rows()[0])[i] = 1.0;
1168         }
1169
1170         if( result && !current_frame )
1171                 frame->clear_frame();
1172
1173         if( cache_active && advance_position && frame->get_status() > 0 )
1174                 frame_cache->put_frame(frame, cache_position,
1175                         current_layer, asset->frame_rate, 1, 0);
1176 //printf("File::read_frame %d\n", __LINE__);
1177
1178         if( advance_position ) current_frame++;
1179         if( debug ) PRINT_TRACE
1180         return 0;
1181 }
1182
1183 int File::can_copy_from(Asset *asset, int64_t position, int output_w, int output_h)
1184 {
1185         if( asset && file ) {
1186                 return asset->width == output_w &&
1187                         asset->height == output_h &&
1188                         file->can_copy_from(asset, position);
1189         }
1190         return 0;
1191 }
1192
1193 // Fill in queries about formats when adding formats here.
1194
1195
1196 int File::strtoformat(const char *format)
1197 {
1198         if( !strcasecmp(format, _(AC3_NAME)) ) return FILE_AC3;
1199         if( !strcasecmp(format, _(SCENE_NAME)) ) return FILE_SCENE;
1200         if( !strcasecmp(format, _(WAV_NAME)) ) return FILE_WAV;
1201         if( !strcasecmp(format, _(PCM_NAME)) ) return FILE_PCM;
1202         if( !strcasecmp(format, _(AU_NAME)) ) return FILE_AU;
1203         if( !strcasecmp(format, _(AIFF_NAME)) ) return FILE_AIFF;
1204         if( !strcasecmp(format, _(SND_NAME)) ) return FILE_SND;
1205         if( !strcasecmp(format, _(PNG_NAME)) ) return FILE_PNG;
1206         if( !strcasecmp(format, _(PNG_LIST_NAME)) ) return FILE_PNG_LIST;
1207         if( !strcasecmp(format, _(TIFF_NAME)) ) return FILE_TIFF;
1208         if( !strcasecmp(format, _(TIFF_LIST_NAME)) ) return FILE_TIFF_LIST;
1209         if( !strcasecmp(format, _(JPEG_NAME)) ) return FILE_JPEG;
1210         if( !strcasecmp(format, _(JPEG_LIST_NAME)) ) return FILE_JPEG_LIST;
1211         if( !strcasecmp(format, _(EXR_NAME)) ) return FILE_EXR;
1212         if( !strcasecmp(format, _(EXR_LIST_NAME)) ) return FILE_EXR_LIST;
1213         if( !strcasecmp(format, _(FLAC_NAME)) ) return FILE_FLAC;
1214         if( !strcasecmp(format, _(CR2_NAME)) ) return FILE_CR2;
1215         if( !strcasecmp(format, _(CR2_LIST_NAME)) ) return FILE_CR2_LIST;
1216         if( !strcasecmp(format, _(MPEG_NAME)) ) return FILE_MPEG;
1217         if( !strcasecmp(format, _(AMPEG_NAME)) ) return FILE_AMPEG;
1218         if( !strcasecmp(format, _(VMPEG_NAME)) ) return FILE_VMPEG;
1219         if( !strcasecmp(format, _(TGA_NAME)) ) return FILE_TGA;
1220         if( !strcasecmp(format, _(TGA_LIST_NAME)) ) return FILE_TGA_LIST;
1221         if( !strcasecmp(format, _(OGG_NAME)) ) return FILE_OGG;
1222         if( !strcasecmp(format, _(VORBIS_NAME)) ) return FILE_VORBIS;
1223         if( !strcasecmp(format, _(RAWDV_NAME)) ) return FILE_RAWDV;
1224         if( !strcasecmp(format, _(FFMPEG_NAME)) ) return FILE_FFMPEG;
1225         if( !strcasecmp(format, _(DBASE_NAME)) ) return FILE_DB;
1226
1227         return 0;
1228 }
1229
1230
1231 const char* File::formattostr(int format)
1232 {
1233         switch( format ) {
1234         case FILE_SCENE:        return _(SCENE_NAME);
1235         case FILE_AC3:          return _(AC3_NAME);
1236         case FILE_WAV:          return _(WAV_NAME);
1237         case FILE_PCM:          return _(PCM_NAME);
1238         case FILE_AU:           return _(AU_NAME);
1239         case FILE_AIFF:         return _(AIFF_NAME);
1240         case FILE_SND:          return _(SND_NAME);
1241         case FILE_PNG:          return _(PNG_NAME);
1242         case FILE_PNG_LIST:     return _(PNG_LIST_NAME);
1243         case FILE_JPEG:         return _(JPEG_NAME);
1244         case FILE_JPEG_LIST:    return _(JPEG_LIST_NAME);
1245         case FILE_CR2:          return _(CR2_NAME);
1246         case FILE_CR2_LIST:     return _(CR2_LIST_NAME);
1247         case FILE_FLAC:         return _(FLAC_NAME);
1248         case FILE_EXR:          return _(EXR_NAME);
1249         case FILE_EXR_LIST:     return _(EXR_LIST_NAME);
1250         case FILE_MPEG:         return _(MPEG_NAME);
1251         case FILE_AMPEG:        return _(AMPEG_NAME);
1252         case FILE_VMPEG:        return _(VMPEG_NAME);
1253         case FILE_TGA:          return _(TGA_NAME);
1254         case FILE_TGA_LIST:     return _(TGA_LIST_NAME);
1255         case FILE_TIFF:         return _(TIFF_NAME);
1256         case FILE_TIFF_LIST:    return _(TIFF_LIST_NAME);
1257         case FILE_OGG:          return _(OGG_NAME);
1258         case FILE_VORBIS:       return _(VORBIS_NAME);
1259         case FILE_RAWDV:        return _(RAWDV_NAME);
1260         case FILE_FFMPEG:       return _(FFMPEG_NAME);
1261         case FILE_DB:           return _(DBASE_NAME);
1262         }
1263         return _("Unknown");
1264 }
1265
1266 int File::strtobits(const char *bits)
1267 {
1268         if( !strcasecmp(bits, _(NAME_8BIT)) ) return BITSLINEAR8;
1269         if( !strcasecmp(bits, _(NAME_16BIT)) ) return BITSLINEAR16;
1270         if( !strcasecmp(bits, _(NAME_24BIT)) ) return BITSLINEAR24;
1271         if( !strcasecmp(bits, _(NAME_32BIT)) ) return BITSLINEAR32;
1272         if( !strcasecmp(bits, _(NAME_ULAW)) ) return BITSULAW;
1273         if( !strcasecmp(bits, _(NAME_ADPCM)) ) return BITS_ADPCM;
1274         if( !strcasecmp(bits, _(NAME_FLOAT)) ) return BITSFLOAT;
1275         return BITSLINEAR16;
1276 }
1277
1278 const char* File::bitstostr(int bits)
1279 {
1280 //printf("File::bitstostr\n");
1281         switch( bits ) {
1282         case BITSLINEAR8:       return (NAME_8BIT);
1283         case BITSLINEAR16:      return (NAME_16BIT);
1284         case BITSLINEAR24:      return (NAME_24BIT);
1285         case BITSLINEAR32:      return (NAME_32BIT);
1286         case BITSULAW:          return (NAME_ULAW);
1287         case BITS_ADPCM:        return (NAME_ADPCM);
1288         case BITSFLOAT:         return (NAME_FLOAT);
1289         }
1290         return _("Unknown");
1291 }
1292
1293
1294
1295 int File::str_to_byteorder(const char *string)
1296 {
1297         if( !strcasecmp(string, _("Lo Hi")) ) return 1;
1298         return 0;
1299 }
1300
1301 const char* File::byteorder_to_str(int byte_order)
1302 {
1303         if( byte_order ) return _("Lo Hi");
1304         return _("Hi Lo");
1305 }
1306
1307 int File::bytes_per_sample(int bits)
1308 {
1309         switch( bits ) {
1310         case BITSLINEAR8:       return 1;
1311         case BITSLINEAR16:      return 2;
1312         case BITSLINEAR24:      return 3;
1313         case BITSLINEAR32:      return 4;
1314         case BITSULAW:          return 1;
1315         }
1316         return 1;
1317 }
1318
1319
1320
1321
1322
1323 int File::get_best_colormodel(int driver)
1324 {
1325         return get_best_colormodel(asset, driver);
1326 }
1327
1328 int File::get_best_colormodel(Asset *asset, int driver)
1329 {
1330         switch( asset->format ) {
1331 #ifdef HAVE_DV
1332         case FILE_RAWDV:        return FileDV::get_best_colormodel(asset, driver);
1333 #endif
1334         case FILE_MPEG:         return FileMPEG::get_best_colormodel(asset, driver);
1335         case FILE_JPEG:
1336         case FILE_JPEG_LIST:    return FileJPEG::get_best_colormodel(asset, driver);
1337 #ifdef HAVE_OPENEXR
1338         case FILE_EXR:
1339         case FILE_EXR_LIST:     return FileEXR::get_best_colormodel(asset, driver);
1340 #endif
1341         case FILE_PNG:
1342         case FILE_PNG_LIST:     return FilePNG::get_best_colormodel(asset, driver);
1343         case FILE_TGA:
1344         case FILE_TGA_LIST:     return FileTGA::get_best_colormodel(asset, driver);
1345         case FILE_CR2:
1346         case FILE_CR2_LIST:     return FileCR2::get_best_colormodel(asset, driver);
1347         case FILE_DB:           return FileDB::get_best_colormodel(asset, driver);
1348         case FILE_FFMPEG:       return FileFFMPEG::get_best_colormodel(asset, driver);
1349         }
1350
1351         return BC_RGB888;
1352 }
1353
1354
1355 int File::colormodel_supported(int colormodel)
1356 {
1357         if( file )
1358                 return file->colormodel_supported(colormodel);
1359
1360         return BC_RGB888;
1361 }
1362
1363
1364 int64_t File::file_memory_usage()
1365 {
1366         return file ? file->base_memory_usage() : 0;
1367 }
1368
1369 int64_t File::get_memory_usage()
1370 {
1371         int64_t result = 0;
1372
1373         result += file_memory_usage();
1374         if( temp_frame ) result += temp_frame->get_data_size();
1375         result += frame_cache->get_memory_usage();
1376         if( video_thread ) result += video_thread->get_memory_usage();
1377
1378         if( result < MIN_CACHEITEM_SIZE ) result = MIN_CACHEITEM_SIZE;
1379         return result;
1380 }
1381
1382
1383 int File::renders_video(int format)
1384 {
1385         switch( format ) {
1386         case FILE_OGG:
1387         case FILE_JPEG:
1388         case FILE_JPEG_LIST:
1389         case FILE_CR2:
1390         case FILE_CR2_LIST:
1391         case FILE_EXR:
1392         case FILE_EXR_LIST:
1393         case FILE_PNG:
1394         case FILE_PNG_LIST:
1395         case FILE_TGA:
1396         case FILE_TGA_LIST:
1397         case FILE_TIFF:
1398         case FILE_TIFF_LIST:
1399         case FILE_VMPEG:
1400         case FILE_RAWDV:
1401         case FILE_FFMPEG:
1402                 return 1;
1403         }
1404         return 0;
1405 }
1406 int File::renders_video(Asset *asset)
1407 {
1408         return asset->format == FILE_FFMPEG ?
1409                 FileFFMPEG::renders_video(asset->fformat) :
1410                 renders_video(asset->format);
1411 }
1412
1413 int File::renders_audio(int format)
1414 {
1415         switch( format ) {
1416         case FILE_AC3:
1417         case FILE_FLAC:
1418         case FILE_PCM:
1419         case FILE_WAV:
1420         case FILE_OGG:
1421         case FILE_VORBIS:
1422         case FILE_AMPEG:
1423         case FILE_AU:
1424         case FILE_AIFF:
1425         case FILE_SND:
1426         case FILE_RAWDV:
1427         case FILE_FFMPEG:
1428                 return 1;
1429         }
1430         return 0;
1431 }
1432 int File::renders_audio(Asset *asset)
1433 {
1434         return asset->format == FILE_FFMPEG ?
1435                 FileFFMPEG::renders_audio(asset->fformat) :
1436                 renders_audio(asset->format);
1437 }
1438
1439 int File::is_image_render(int format)
1440 {
1441         switch( format ) {
1442         case FILE_EXR:
1443         case FILE_JPEG:
1444         case FILE_PNG:
1445         case FILE_TGA:
1446         case FILE_TIFF:
1447                 return 1;
1448         }
1449
1450         return 0;
1451 }
1452
1453 const char* File::get_tag(int format)
1454 {
1455         switch( format ) {
1456         case FILE_AC3:          return "ac3";
1457         case FILE_AIFF:         return "aif";
1458         case FILE_AMPEG:        return "mp3";
1459         case FILE_AU:           return "au";
1460         case FILE_RAWDV:        return "dv";
1461         case FILE_DB:           return "db";
1462         case FILE_EXR:          return "exr";
1463         case FILE_EXR_LIST:     return "exr";
1464         case FILE_FLAC:         return "flac";
1465         case FILE_JPEG:         return "jpg";
1466         case FILE_JPEG_LIST:    return "jpg";
1467         case FILE_OGG:          return "ogg";
1468         case FILE_PCM:          return "pcm";
1469         case FILE_PNG:          return "png";
1470         case FILE_PNG_LIST:     return "png";
1471         case FILE_TGA:          return "tga";
1472         case FILE_TGA_LIST:     return "tga";
1473         case FILE_TIFF:         return "tif";
1474         case FILE_TIFF_LIST:    return "tif";
1475         case FILE_VMPEG:        return "m2v";
1476         case FILE_VORBIS:       return "ogg";
1477         case FILE_WAV:          return "wav";
1478         case FILE_FFMPEG:       return "ffmpg";
1479         }
1480         return 0;
1481 }
1482
1483 const char* File::get_prefix(int format)
1484 {
1485         switch( format ) {
1486         case FILE_PCM:          return "PCM";
1487         case FILE_WAV:          return "WAV";
1488         case FILE_PNG:          return "PNG";
1489         case FILE_JPEG:         return "JPEG";
1490         case FILE_TIFF:         return "TIFF";
1491         case FILE_GIF:          return "GIF";
1492         case FILE_JPEG_LIST:    return "JPEG_LIST";
1493         case FILE_AU:           return "AU";
1494         case FILE_AIFF:         return "AIFF";
1495         case FILE_SND:          return "SND";
1496         case FILE_TGA_LIST:     return "TGA_LIST";
1497         case FILE_TGA:          return "TGA";
1498         case FILE_MPEG:         return "MPEG";
1499         case FILE_AMPEG:        return "AMPEG";
1500         case FILE_VMPEG:        return "VMPEG";
1501         case FILE_RAWDV:        return "RAWDV";
1502         case FILE_TIFF_LIST:    return "TIFF_LIST";
1503         case FILE_PNG_LIST:     return "PNG_LIST";
1504         case FILE_AC3:          return "AC3";
1505         case FILE_EXR:          return "EXR";
1506         case FILE_EXR_LIST:     return "EXR_LIST";
1507         case FILE_CR2:          return "CR2";
1508         case FILE_OGG:          return "OGG";
1509         case FILE_VORBIS:       return "VORBIS";
1510         case FILE_FLAC:         return "FLAC";
1511         case FILE_FFMPEG:       return "FFMPEG";
1512         case FILE_SCENE:        return "SCENE";
1513         case FILE_CR2_LIST:     return "CR2_LIST";
1514         case FILE_GIF_LIST:     return "GIF_LIST";
1515         case FILE_DB:           return "DB";
1516         }
1517         return _("UNKNOWN");
1518 }
1519
1520
1521 PackagingEngine *File::new_packaging_engine(Asset *asset)
1522 {
1523         PackagingEngine *result;
1524         switch( asset->format ) {
1525         case FILE_OGG:
1526                 result = (PackagingEngine*)new PackagingEngineOGG();
1527                 break;
1528         default:
1529                 result = (PackagingEngine*) new PackagingEngineDefault();
1530                 break;
1531         }
1532
1533         return result;
1534 }
1535
1536
1537 int File::record_fd()
1538 {
1539         return file ? file->record_fd() : -1;
1540 }
1541
1542
1543 void File::get_exe_path(char *result, char *bnp)
1544 {
1545 // Get executable path, basename
1546         int len = readlink("/proc/self/exe", result, BCTEXTLEN-1);
1547         if( len >= 0 ) {
1548                 result[len] = 0;
1549                 char *ptr = strrchr(result, '/');
1550                 if( ptr ) *ptr++ = 0; else ptr = result;
1551                 if( bnp ) strncpy(bnp, ptr, BCTEXTLEN);
1552         }
1553         else {
1554                 *result = 0;
1555                 if( bnp ) *bnp = 0;
1556         }
1557 }
1558
1559 void File::getenv_path(char *result, const char *path)
1560 {
1561         char *rp = result, *ep = rp + BCTEXTLEN-1;
1562         const char *cp = path;
1563 // any env var can be used here to expand a path as:
1564 //   "path...$id...": and id is a word as alpha,alnum...
1565 //   expands as "path...getenv(id)..."
1566 // CIN_PATH, CIN_LIB are set in main.C,
1567         for( int ch=*cp++; ch && rp < ep; ch=*cp++ ) {
1568                 if( ch == '$' && isalpha(*cp) ) { // scan alpha,alnum...
1569                         const char *bp = cp;  char *p = rp;
1570                         while( p < ep && *bp && (isalnum(*bp) || *bp == '_') ) *p++ = *bp++;
1571                         *p = 0;
1572                         const char *envp = getenv(rp); // read env value
1573                         if( !envp ) continue;
1574                         while( *envp && rp < ep ) *rp++ = *envp++;
1575                         cp = bp;                 // subst id=value
1576                         continue;
1577                 }
1578                 *rp++ = ch;
1579         }
1580         *rp = 0;
1581 }
1582
1583 void File::setenv_path(char *result, const char *var, const char *path)
1584 {
1585         char *env = getenv(var);
1586         if( env ) return;
1587         char env_path[BCTEXTLEN];
1588         getenv_path(env_path, path);
1589         sprintf(result, "%s=%s", var, env_path);
1590         putenv(result);
1591 }
1592
1593 char File::cinexe_path[BCTEXTLEN];
1594 char File::cinpkg_path[BCTEXTLEN];
1595 char File::cindat_path[BCTEXTLEN];
1596 char File::cinlib_path[BCTEXTLEN];
1597 char File::cincfg_path[BCTEXTLEN];
1598 char File::cinplg_path[BCTEXTLEN];
1599 char File::cinlad_path[BCTEXTLEN];
1600 char File::cinlcl_path[BCTEXTLEN];
1601 char File::cinbwr_path[BCTEXTLEN];
1602
1603 void File::init_cin_path()
1604 {
1605         char env_path[BCTEXTLEN], env_pkg[BCTEXTLEN];
1606 // these values are advertised for forks/shell scripts
1607         get_exe_path(env_path, env_pkg);
1608         snprintf(cinexe_path, sizeof(cinexe_path), "CIN_PATH=%s", env_path);
1609         putenv(cinexe_path);
1610         snprintf(cinpkg_path, sizeof(cinpkg_path), "CIN_PKG=%s", env_pkg);
1611         putenv(cinpkg_path);
1612
1613         setenv_path(cindat_path, "CIN_DAT", CINDAT_DIR);
1614         setenv_path(cinlib_path, "CIN_LIB", CINLIB_DIR);
1615         setenv_path(cincfg_path, "CIN_CONFIG", CONFIG_DIR);
1616         setenv_path(cinplg_path, "CIN_PLUGIN", PLUGIN_DIR);
1617         setenv_path(cinlad_path, "CIN_LADSPA", LADSPA_DIR);
1618         setenv_path(cinlcl_path, "CIN_LOCALE", LOCALE_DIR);
1619         setenv_path(cinbwr_path, "CIN_BROWSER", CIN_BROWSER);
1620 }
1621