ffmpeg filter memory leak, cursor hopper fix, added leaker.C, misc fixes
[goodguy/history.git] / cinelerra-5.1 / cinelerra / formatpopup.C
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
5  *
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.
10  *
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.
15  *
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
19  *
20  */
21
22 #include "bcsignals.h"
23 #include "file.inc"
24 #include "filesystem.h"
25 #include "ffmpeg.h"
26 #include "formatpopup.h"
27 #include "language.h"
28 #include "pluginserver.h"
29
30
31
32 FormatPopup::FormatPopup(ArrayList<PluginServer*> *plugindb,
33         int x, int y, int use_brender)
34  : BC_ListBox(x, y, 200, 200, LISTBOX_TEXT, 0, 0, 0, 1, 0, 1)
35 {
36         this->plugindb = plugindb;
37         this->use_brender = use_brender;
38         set_tooltip(_("Change file format"));
39 }
40
41 void FormatPopup::create_objects()
42 {
43         if(!use_brender)
44         {
45                 format_items.append(new BC_ListBoxItem(_(FFMPEG_NAME)));
46                 format_items.append(new BC_ListBoxItem(_(AC3_NAME)));
47                 format_items.append(new BC_ListBoxItem(_(AIFF_NAME)));
48                 format_items.append(new BC_ListBoxItem(_(AU_NAME)));
49                 format_items.append(new BC_ListBoxItem(_(FLAC_NAME)));
50                 format_items.append(new BC_ListBoxItem(_(JPEG_NAME)));
51         }
52
53         format_items.append(new BC_ListBoxItem(_(JPEG_LIST_NAME)));
54
55         if(!use_brender)
56         {
57 #ifdef HAVE_OPENEXR
58                 format_items.append(new BC_ListBoxItem(_(EXR_NAME)));
59                 format_items.append(new BC_ListBoxItem(_(EXR_LIST_NAME)));
60 #endif
61                 format_items.append(new BC_ListBoxItem(_(WAV_NAME)));
62                 format_items.append(new BC_ListBoxItem(_(RAWDV_NAME)));
63                 format_items.append(new BC_ListBoxItem(_(AMPEG_NAME)));
64                 format_items.append(new BC_ListBoxItem(_(VMPEG_NAME)));
65                 format_items.append(new BC_ListBoxItem(_(VORBIS_NAME)));
66                 format_items.append(new BC_ListBoxItem(_(OGG_NAME)));
67                 format_items.append(new BC_ListBoxItem(_(PCM_NAME)));
68                 format_items.append(new BC_ListBoxItem(_(PNG_NAME)));
69         }
70
71         format_items.append(new BC_ListBoxItem(_(PNG_LIST_NAME)));
72
73         if(!use_brender)
74         {
75                 format_items.append(new BC_ListBoxItem(_(TGA_NAME)));
76         }
77
78         format_items.append(new BC_ListBoxItem(_(TGA_LIST_NAME)));
79
80         if(!use_brender)
81         {
82                 format_items.append(new BC_ListBoxItem(_(TIFF_NAME)));
83         }
84
85         format_items.append(new BC_ListBoxItem(_(TIFF_LIST_NAME)));
86         update(&format_items, 0, 0, 1);
87 }
88
89 FormatPopup::~FormatPopup()
90 {
91         format_items.remove_all_objects();
92 }
93
94 int FormatPopup::handle_event()
95 {
96         return 1;
97 }
98
99
100 FFMPEGPopup::FFMPEGPopup(ArrayList<PluginServer*> *plugindb, int x, int y)
101  : BC_ListBox(x, y, 100, 200, LISTBOX_TEXT, 0, 0, 0, 1, 0, 1)
102 {
103         this->plugindb = plugindb;
104         set_tooltip(_("Set ffmpeg file type"));
105 }
106
107 void FFMPEGPopup::create_objects()
108 {
109         static const char *dirs[] = { "audio", "video", };
110         for( int i=0; i<(int)(sizeof(dirs)/sizeof(dirs[0])); ++i ) {
111                 FileSystem fs;
112                 char option_path[BCTEXTLEN];
113                 FFMPEG::set_option_path(option_path, dirs[i]);
114                 fs.update(option_path);
115                 int total_files = fs.total_files();
116                 for( int j=0; j<total_files; ++j ) {
117                         const char *name = fs.get_entry(j)->get_name();
118                         const char *ext = strrchr(name,'.');
119                         if( !ext ) continue;
120                         if( !strcmp("dfl", ++ext) ) continue;
121                         if( !strcmp("opts", ext) ) continue;
122                         int k = ffmpeg_types.size();
123                         while( --k >= 0 && strcmp(ffmpeg_types[k]->get_text(), ext) );
124                         if( k >= 0 ) continue;
125                         ffmpeg_types.append(new BC_ListBoxItem(ext));
126                 }
127         }
128
129         update(&ffmpeg_types, 0, 0, 1);
130 }
131
132 FFMPEGPopup::~FFMPEGPopup()
133 {
134         ffmpeg_types.remove_all_objects();
135 }
136
137 int FFMPEGPopup::handle_event()
138 {
139         return 0;
140 }
141
142