4 * Copyright (C) 1997-2014 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
24 #include "bcsignals.h"
28 #include "condition.h"
31 #include "edlsession.h"
33 #include "framecache.h"
36 #include "mwindowgui.h"
37 #include "renderengine.h"
38 #include "resourcethread.h"
39 #include "resourcepixmap.h"
41 #include "timelinepane.h"
42 #include "trackcanvas.h"
43 #include "transportque.h"
46 #include "wavecache.h"
51 ResourceThreadItem::ResourceThreadItem(ResourcePixmap *pixmap,
57 this->pane_number = pane_number;
58 this->data_type = data_type;
59 this->pixmap = pixmap;
60 this->indexable = indexable;
62 // Assets are garbage collected so they don't need to be replicated.
63 this->operation_count = operation_count;
64 indexable->Garbage::add_user();
68 ResourceThreadItem::~ResourceThreadItem()
70 indexable->Garbage::remove_user();
79 VResourceThreadItem::VResourceThreadItem(ResourcePixmap *pixmap,
90 : ResourceThreadItem(pixmap,
96 this->picon_x = picon_x;
97 this->picon_y = picon_y;
98 this->picon_w = picon_w;
99 this->picon_h = picon_h;
100 this->frame_rate = frame_rate;
101 this->position = position;
105 VResourceThreadItem::~VResourceThreadItem()
116 AResourceThreadItem::AResourceThreadItem(ResourcePixmap *pixmap,
118 Indexable *indexable,
124 : ResourceThreadItem(pixmap,
131 this->channel = channel;
136 AResourceThreadItem::~AResourceThreadItem()
156 ResourceThread::ResourceThread(MWindow *mwindow, MWindowGUI *gui)
159 //printf("ResourceThread::ResourceThread %d %p\n", __LINE__, this);
160 this->mwindow = mwindow;
166 draw_lock = new Condition(0, "ResourceThread::draw_lock", 0);
167 // interrupted_lock = new Condition(0, "ResourceThread::interrupted_lock", 0);
168 item_lock = new Mutex("ResourceThread::item_lock");
170 for(int i = 0; i < MAXCHANNELS; i++)
185 ResourceThread::~ResourceThread()
189 // delete interrupted_lock;
194 for(int i = 0; i < MAXCHANNELS; i++)
195 delete temp_buffer[i];
197 delete render_engine;
198 if( audio_asset ) audio_asset->remove_user();
199 if( video_asset ) video_asset->remove_user();
202 void ResourceThread::create_objects()
208 void ResourceThread::add_picon(ResourcePixmap *pixmap,
217 Indexable *indexable)
219 item_lock->lock("ResourceThread::item_lock");
221 items.append(new VResourceThreadItem(pixmap,
235 void ResourceThread::add_wave(ResourcePixmap *pixmap,
237 Indexable *indexable,
240 int64_t source_start,
243 item_lock->lock("ResourceThread::item_lock");
245 items.append(new AResourceThreadItem(pixmap,
266 void ResourceThread::stop_draw(int reset)
271 item_lock->lock("ResourceThread::stop_draw");
273 //printf("ResourceThread::stop_draw %d %d\n", __LINE__, reset);
274 //BC_Signals::dump_stack();
275 if(reset) items.remove_all_objects();
284 void ResourceThread::start_draw()
287 // Tag last audio item to cause refresh.
289 while( --i>=0 && items[i]->data_type!=TRACK_AUDIO );
290 if( i >= 0 ) items[i]->last = 1;
295 void ResourceThread::run()
300 draw_lock->lock("ResourceThread::run");
305 item_lock->lock("ResourceThread::run");
306 int total_items = items.size();
307 ResourceThreadItem *item = 0;
311 items.remove_number(0);
314 //printf("ResourceThread::run %d %d\n", __LINE__, items.size());
315 if(!total_items) break;
317 switch( item->data_type ) {
319 do_video((VResourceThreadItem*)item);
322 do_audio((AResourceThreadItem*)item);
331 mwindow->age_caches();
335 void ResourceThread::stop()
346 void ResourceThread::open_render_engine(EDL *nested_edl,
350 if(render_engine && render_engine_id != nested_edl->id)
352 delete render_engine;
358 TransportCommand command;
360 command.command = NORMAL_FWD;
362 command.command = CURRENT_FRAME;
363 command.get_edl()->copy_all(nested_edl);
364 command.change_type = CHANGE_ALL;
365 command.realtime = 0;
366 render_engine = new RenderEngine(0,
367 mwindow->preferences, 0, 0);
368 render_engine_id = nested_edl->id;
369 render_engine->set_vcache(mwindow->video_cache);
370 render_engine->set_acache(mwindow->audio_cache);
371 render_engine->arm_command(&command);
375 File *ResourceThread::get_audio_source(Asset *asset)
377 if( interrupted ) asset = 0;
379 if( audio_asset && audio_asset != asset && (!asset ||
380 strcmp(audio_asset->path, asset->path)) )
382 mwindow->audio_cache->check_in(audio_asset);
384 audio_asset->remove_user();
388 if( !audio_asset && asset )
391 audio_asset->add_user();
392 audio_source = mwindow->audio_cache->check_out(asset, mwindow->edl);
397 File *ResourceThread::get_video_source(Asset *asset)
399 if( interrupted ) asset = 0;
401 if( video_asset && video_asset != asset && (!asset ||
402 strcmp(video_asset->path, asset->path)) )
404 mwindow->video_cache->check_in(video_asset);
406 video_asset->remove_user();
410 if( !video_asset && asset )
413 video_asset->add_user();
414 video_source = mwindow->video_cache->check_out(asset, mwindow->edl);
419 void ResourceThread::do_video(VResourceThreadItem *item)
424 int source_cmodel = -1;
426 if(item->indexable->is_asset)
428 Asset *asset = (Asset*)item->indexable;
429 source_w = asset->width;
430 source_h = asset->height;
431 source_id = asset->id;
432 source_cmodel = BC_RGB888;
436 EDL *nested_edl = (EDL*)item->indexable;
437 source_w = nested_edl->session->output_w;
438 source_h = nested_edl->session->output_h;
439 source_id = nested_edl->id;
440 source_cmodel = nested_edl->session->color_model;
444 (temp_picon->get_w() != source_w ||
445 temp_picon->get_h() != source_h ||
446 temp_picon->get_color_model() != source_cmodel))
454 temp_picon = new VFrame(0,
462 // Get temporary to copy cached frame to
464 (temp_picon2->get_w() != item->picon_w ||
465 temp_picon2->get_h() != item->picon_h))
473 temp_picon2 = new VFrame(0,
483 // Search frame cache again.
485 VFrame *picon_frame = 0;
486 int need_conversion = 0;
490 picon_frame = mwindow->frame_cache->get_frame_ptr(item->position,
497 //printf("search cache %ld,%d,%f,%dx%d,%d = %p\n",
498 // item->position, item->layer, item->frame_rate,
499 // item->picon_w, item->picon_h, source_id, picon_frame);
502 temp_picon2->copy_from(picon_frame);
503 // Unlock the get_frame_ptr command
504 mwindow->frame_cache->unlock();
507 if(!item->indexable->is_asset)
509 nested_edl = (EDL*)item->indexable;
510 open_render_engine(nested_edl, 0, 1);
512 int64_t source_position = (int64_t)(item->position *
513 nested_edl->session->frame_rate /
515 if(render_engine->vrender)
516 render_engine->vrender->process_buffer(
525 asset = (Asset*)item->indexable;
526 File *source = get_video_source(asset);
530 source->set_layer(item->layer);
531 int64_t normalized_position = (int64_t)(item->position *
534 source->set_video_position(normalized_position,
537 source->read_frame(temp_picon);
544 picon_frame = new VFrame(0,
550 BC_CModels::transfer(picon_frame->get_rows(),
551 temp_picon->get_rows(),
564 picon_frame->get_w(),
565 picon_frame->get_h(),
569 temp_picon->get_bytes_per_line(),
570 picon_frame->get_bytes_per_line());
571 temp_picon2->copy_from(picon_frame);
572 mwindow->frame_cache->put_frame(picon_frame,
575 mwindow->edl->session->frame_rate,
588 mwindow->gui->lock_window("ResourceThread::do_video");
590 // It was interrupted while waiting.
593 mwindow->gui->unlock_window();
599 // Test for pixmap existence first
600 if(item->operation_count == operation_count)
602 ArrayList<ResourcePixmap*> &resource_pixmaps = gui->resource_pixmaps;
603 int i = resource_pixmaps.total;
604 while( --i >= 0 && resource_pixmaps[i] != item->pixmap );
606 item->pixmap->draw_vframe(temp_picon2,
614 mwindow->gui->update(0, IGNORE_THREAD, 0, 0, 0, 0, 0);
618 mwindow->gui->unlock_window();
622 #define BUFFERSIZE 65536
623 void ResourceThread::do_audio(AResourceThreadItem *item)
626 WaveCacheItem *wave_item;
630 if(debug) printf("ResourceThread::do_audio %d\n", __LINE__);
631 if((wave_item = mwindow->wave_cache->get_wave(item->indexable->id,
632 item->channel, item->start, item->end)))
634 high = wave_item->high;
635 low = wave_item->low;
636 mwindow->wave_cache->unlock();
640 int first_sample = 1;
641 int64_t start = item->start;
642 int64_t end = item->end;
643 if(start == end) end = start + 1;
644 double *buffer_samples = !audio_buffer ? 0 :
645 audio_buffer->get_data();
647 if(debug) printf("ResourceThread::do_audio %d\n", __LINE__);
648 for(int64_t sample = start; sample < end; sample++)
651 // Get value from previous buffer
653 item->channel == audio_channel &&
654 item->indexable->id == audio_asset_id &&
655 sample >= audio_start &&
656 sample < audio_start + audio_samples)
664 audio_buffer = new Samples(BUFFERSIZE);
665 buffer_samples = audio_buffer->get_data();
668 int64_t total_samples = item->indexable->get_audio_samples();
669 int fragment = BUFFERSIZE;
670 if(fragment + sample > total_samples)
671 fragment = total_samples - sample;
673 if(!item->indexable->is_asset)
675 if(debug) printf("ResourceThread::do_audio %d\n", __LINE__);
676 open_render_engine((EDL*)item->indexable, 1, 0);
677 if(debug) printf("ResourceThread::do_audio %d %p\n", __LINE__, render_engine);
678 if(render_engine->arender)
680 if(debug) printf("ResourceThread::do_audio %d\n", __LINE__);
681 int source_channels = item->indexable->get_audio_channels();
682 if(debug) printf("ResourceThread::do_audio %d\n", __LINE__);
683 for(int i = 0; i < MAXCHANNELS; i++)
685 if(i < source_channels &&
688 temp_buffer[i] = new Samples(BUFFERSIZE);
691 if(i >= source_channels &&
694 delete temp_buffer[i];
700 if(debug) printf("ResourceThread::do_audio %d\n", __LINE__);
701 render_engine->arender->process_buffer(
705 if(debug) printf("ResourceThread::do_audio %d\n", __LINE__);
706 memcpy(buffer_samples,
707 temp_buffer[item->channel]->get_data(),
708 fragment * sizeof(double));
712 if(debug) printf("ResourceThread::do_audio %d %d\n", __LINE__, fragment);
713 if(fragment > 0) bzero(buffer_samples, sizeof(double) * fragment);
714 if(debug) printf("ResourceThread::do_audio %d\n", __LINE__);
720 Asset *asset = (Asset*)item->indexable;
721 File *source = get_audio_source(asset);
725 source->set_channel(item->channel);
726 source->set_audio_position(sample);
727 source->read_samples(audio_buffer, fragment);
730 audio_asset_id = item->indexable->id;
731 audio_channel = item->channel;
732 audio_start = sample;
733 audio_samples = fragment;
737 value = buffer_samples[sample - audio_start];
752 if(debug) printf("ResourceThread::do_audio %d\n", __LINE__);
754 // If it's a nested EDL, store all the channels
755 mwindow->wave_cache->put_wave(item->indexable,
761 if(debug) printf("ResourceThread::do_audio %d\n", __LINE__);
763 if(debug) printf("ResourceThread::do_audio %d\n", __LINE__);
769 if(debug) printf("ResourceThread::do_audio %d\n", __LINE__);
771 mwindow->gui->lock_window("ResourceThread::do_audio");
774 mwindow->gui->unlock_window();
778 if(debug) printf("ResourceThread::do_audio %d\n", __LINE__);
779 if(item->operation_count == operation_count)
782 // Test for pixmap existence first
783 ArrayList<ResourcePixmap*> &resource_pixmaps = gui->resource_pixmaps;
784 int i = resource_pixmaps.total;
785 while( --i >= 0 && resource_pixmaps[i] != item->pixmap );
788 if(prev_x == item->x - 1)
790 high = MAX(high, prev_l);
791 low = MIN(low, prev_h);
796 if(gui->pane[item->pane_number])
797 item->pixmap->draw_wave(
798 gui->pane[item->pane_number]->canvas,
802 if(timer->get_difference() > 250 || item->last)
804 mwindow->gui->update(0, 3, 0, 0, 0, 0, 0);
809 if(debug) printf("ResourceThread::do_audio %d\n", __LINE__);
811 mwindow->gui->unlock_window();