4 * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
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.
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.
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
22 #include "bcsignals.h"
26 #include "edlsession.h"
28 #include "pluginserver.h"
29 #include "renderengine.h"
30 #include "transportque.h"
31 #include "vattachmentpoint.h"
32 #include "vdevicex11.h"
33 #include "videodevice.h"
36 VAttachmentPoint::VAttachmentPoint(RenderEngine *renderengine, Plugin *plugin)
37 : AttachmentPoint(renderengine, plugin, TRACK_VIDEO)
42 VAttachmentPoint::~VAttachmentPoint()
44 delete_buffer_vector();
47 void VAttachmentPoint::delete_buffer_vector()
50 if(!This) printf("VAttachmentPoint::delete_buffer_vector NULL\n");
53 for(int i = 0; i < virtual_plugins.total; i++)
54 delete buffer_vector[i];
55 delete [] buffer_vector;
60 void VAttachmentPoint::new_buffer_vector(int width, int height, int colormodel)
63 if(!This) printf("VAttachmentPoint::new_buffer_vector NULL\n");
65 (width != buffer_vector[0]->get_w() ||
66 height != buffer_vector[0]->get_h() ||
67 colormodel != buffer_vector[0]->get_color_model()))
69 delete_buffer_vector();
74 buffer_vector = new VFrame*[virtual_plugins.total];
75 for(int i = 0; i < virtual_plugins.total; i++)
77 buffer_vector[i] = new VFrame(width, height, colormodel);
82 int VAttachmentPoint::get_buffer_size()
87 void VAttachmentPoint::render(VFrame *output,
89 int64_t start_position,
95 if(!This) printf("VAttachmentPoint::render NULL\n");
96 if(!plugin_server || !plugin->on) return;
99 printf(" VAttachmentPoint::render \"%s\" multi=%d opengl=%d\n",
100 plugin_server->title,
101 plugin_server->multichannel,
104 if(plugin_server->multichannel)
106 // Test against previous parameters for reuse of previous data
107 if( !is_processed || this->start_position != start_position ||
108 !EQUIV(this->frame_rate, frame_rate)) {
110 this->start_position = start_position;
111 this->frame_rate = frame_rate;
113 // Allocate buffer vector for subsequent render calls
114 new_buffer_vector(output->get_w(), output->get_h(),
115 output->get_color_model());
117 //printf("VAttachmentPoint::render 1 %d\n", buffer_number);
119 plugin_servers.values[0]->set_use_opengl(use_opengl,
120 renderengine->video);
121 plugin_servers.values[0]->process_buffer(buffer_vector,
122 start_position, frame_rate,
123 (int64_t)Units::round(plugin->length * frame_rate /
124 renderengine->get_edl()->session->frame_rate),
125 renderengine->command->get_direction());
127 //printf("VAttachmentPoint::render 3\n");
128 // Need to copy PBuffer if OpenGL, regardless of use_opengl
129 int opengl_state = buffer_vector[buffer_number]->get_opengl_state();
130 if( opengl_state == VFrame::RAM ) {
131 output->transfer_from(buffer_vector[buffer_number],
132 0, 0,0, output->get_w(), output->get_h());
133 output->set_opengl_state(VFrame::RAM);
135 else if( opengl_state != VFrame::UNKNOWN &&
136 renderengine && renderengine->video) {
137 // Need to copy PBuffer to texture
138 // printf("VAttachmentPoint::render temp=%p output=%p\n",
139 // buffer_vector[buffer_number],
141 VDeviceX11 *x11_device = (VDeviceX11*)renderengine->video->get_output_base();
142 x11_device->copy_frame(output, buffer_vector[buffer_number]);
146 // process single track
148 VFrame *output_temp[1];
149 output_temp[0] = output;
151 plugin_servers.values[buffer_number]->set_use_opengl(use_opengl,
152 renderengine->video);
153 plugin_servers.values[buffer_number]->process_buffer(output_temp,
156 (int64_t)Units::round(plugin->length *
158 renderengine->get_edl()->session->frame_rate),
159 renderengine->command->get_direction());