edit drag handle cursor per track, batchrender col width fix, batchrender path errmsg...
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / filejpeglist.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 "assets.h"
23 #include "file.h"
24 #include "filejpeglist.h"
25 #include "guicast.h"
26 #include "libmjpeg.h"
27 #include "mwindow.inc"
28 #include "jpegwrapper.h"
29 #include "vframe.h"
30
31 #include <ctype.h>
32 #include <stdlib.h>
33 #include <string.h>
34
35
36 FileJPEGList::FileJPEGList(Asset *asset, File *file)
37  : FileList(asset, file)
38 {
39         asset->format = FILE_JPEG_LIST;
40 }
41
42 FileJPEGList::~FileJPEGList()
43 {
44         close_file();
45 }
46
47 char* FileJPEGList::list_title()
48 {
49         return _("JPEGLIST");
50 }
51
52 char* FileJPEGList::extension()
53 {
54         return ".jpg";
55 }
56
57 void FileJPEGList::get_parameters(BC_WindowBase *parent_window,
58         Asset *asset, BC_WindowBase* &format_window,
59         int audio_options, int video_options, EDL *edl)
60 {
61         if(video_options)
62         {
63                 JPEGConfigVideo *window = new JPEGConfigVideo(parent_window, asset);
64                 format_window = window;
65                 window->create_objects();
66                 window->run_window();
67                 delete window;
68         }
69 }
70
71 int FileJPEGList::can_copy_from(Asset *asset)
72 {
73         if(asset->format == FILE_JPEG_LIST)
74                 return 1;
75
76         return 0;
77 }
78
79 int FileJPEGList::get_best_colormodel(int driver, int colormodel)
80 {
81         if(colormodel > -1)
82         {
83                 switch(colormodel)
84                 {
85                         case BC_YUV420P:
86                         case BC_YUV422P:
87                         case BC_YUV422:
88                                 return colormodel;
89                                 break;
90                         default:
91                                 return BC_YUV422P;
92                                 break;
93                 }
94         }
95         return BC_YUV422P;
96 }
97
98
99 int FileJPEGList::read_frame(VFrame *frame, VFrame *data)
100 {
101         PRINT_TRACE
102
103         mjpeg_t *mjpeg = mjpeg_new(asset->width, asset->height, 1);
104         mjpeg_decompress(mjpeg, data->get_data(), data->get_compressed_size(),
105                 0, frame->get_rows(),
106                 frame->get_y(), frame->get_u(), frame->get_v(),
107                 frame->get_color_model(), file->cpus);
108         mjpeg_delete(mjpeg);
109         PRINT_TRACE
110         return 0;
111 }
112
113 int FileJPEGList::write_frame(VFrame *frame, VFrame *data)
114 {
115         mjpeg_t *mjpeg = mjpeg_new(asset->width, asset->height, 1);
116         mjpeg_compress(mjpeg, frame->get_rows(),
117                 frame->get_y(), frame->get_u(), frame->get_v(),
118                 frame->get_color_model(), file->cpus);
119         data->allocate_compressed_data(mjpeg_output_size(mjpeg));
120         bcopy(mjpeg_output_buffer(mjpeg), frame->get_data(), mjpeg_output_size(mjpeg));
121         mjpeg_delete(mjpeg);
122         return 0;
123 }
124
125
126 JPEGConfigVideo::JPEGConfigVideo(BC_WindowBase *parent_window, Asset *asset)
127  : BC_Window(_(PROGRAM_NAME ": Video Compression"),
128         parent_window->get_abs_cursor_x(),
129         parent_window->get_abs_cursor_y(),
130         400, 100)
131 {
132         this->parent_window = parent_window;
133         this->asset = asset;
134 }
135
136 JPEGConfigVideo::~JPEGConfigVideo()
137 {
138 }
139
140 void JPEGConfigVideo::create_objects()
141 {
142         int x = 10, y = 10;
143         lock_window("JPEGConfigVideo::create_objects");
144         add_subwindow(new BC_Title(x, y, _("Quality:")));
145         add_subwindow(new BC_ISlider(x + 80, y, 0,
146                 200, 200, 0, 100, asset->quality,
147                 0, 0, &asset->quality));
148
149         add_subwindow(new BC_OKButton(this));
150         unlock_window();
151 }
152
153 int JPEGConfigVideo::close_event()
154 {
155         set_done(0);
156         return 1;
157 }
158