X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Fdvdcreate.C;h=155f17fbd1d2d5d8184cc241c3ea397c2301bb20;hb=43821d27c5b51c4250a251f20c98878f54deb288;hp=f6a6bc699868017a6af2632e06934be592e8806b;hpb=5a1b2bb96f2bd6b7ef4f8031763683726c02219d;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/cinelerra/dvdcreate.C b/cinelerra-5.1/cinelerra/dvdcreate.C index f6a6bc69..155f17fb 100644 --- a/cinelerra-5.1/cinelerra/dvdcreate.C +++ b/cinelerra-5.1/cinelerra/dvdcreate.C @@ -1,4 +1,5 @@ #include "asset.h" +#include "bchash.h" #include "clip.h" #include "dvdcreate.h" #include "edl.h" @@ -83,7 +84,7 @@ const double CreateDVD_Thread::DVD_KAUDIO_RATE = 224; CreateDVD_MenuItem::CreateDVD_MenuItem(MWindow *mwindow) : BC_MenuItem(_("DVD Render..."), _("Shift-D"), 'D') { - set_shift(1); + set_shift(1); this->mwindow = mwindow; } @@ -125,8 +126,7 @@ CreateDVD_Thread::~CreateDVD_Thread() close_window(); } -int CreateDVD_Thread::create_dvd_jobs(ArrayList *jobs, - const char *tmp_path, const char *asset_title) +int CreateDVD_Thread::create_dvd_jobs(ArrayList *jobs, const char *asset_dir) { EDL *edl = mwindow->edl; if( !edl || !edl->session ) { @@ -145,9 +145,6 @@ int CreateDVD_Thread::create_dvd_jobs(ArrayList *jobs, return 1; } - char asset_dir[BCTEXTLEN]; - sprintf(asset_dir, "%s/%s", tmp_path, asset_title); - if( mkdir(asset_dir, 0777) ) { char err[BCTEXTLEN], msg[BCTEXTLEN]; strerror_r(errno, err, sizeof(err)); @@ -339,7 +336,7 @@ int CreateDVD_Thread::create_dvd_jobs(ArrayList *jobs, jobs->append(job); strcpy(&job->edl_path[0], xml_filename); asset = job->asset; - + sprintf(&asset->path[0],"%s/dvd.ac3", asset_dir); asset->audio_data = 1; asset->format = FILE_AC3; @@ -365,6 +362,7 @@ int CreateDVD_Thread::create_dvd_jobs(ArrayList *jobs, void CreateDVD_Thread::handle_close_event(int result) { if( result ) return; + mwindow->defaults->update("WORK_DIRECTORY", tmp_path); mwindow->batch_render->load_defaults(mwindow->defaults); mwindow->undo->update_undo_before(); KeyFrame keyframe; char data[BCTEXTLEN]; @@ -436,19 +434,22 @@ void CreateDVD_Thread::handle_close_event(int result) keyframe.set_data(data); insert_video_plugin("Histogram", &keyframe); } - mwindow->batch_render->reset(1); - create_dvd_jobs(&mwindow->batch_render->jobs, tmp_path, asset_title); - mwindow->save_backup(); + char asset_dir[BCTEXTLEN], jobs_path[BCTEXTLEN]; + sprintf(asset_dir, "%s/%s", tmp_path, asset_title); + sprintf(jobs_path, "%s/dvd.jobs", asset_dir); + mwindow->batch_render->reset(jobs_path); + int ret = create_dvd_jobs(&mwindow->batch_render->jobs, asset_dir); mwindow->undo->update_undo_after(_("create dvd"), LOAD_ALL); mwindow->resync_guis(); - mwindow->batch_render->handle_close_event(0); + if( ret ) return; + mwindow->batch_render->save_jobs(); mwindow->batch_render->start(); } BC_Window* CreateDVD_Thread::new_gui() { - memset(tmp_path,0,sizeof(tmp_path)); strcpy(tmp_path,"/tmp"); + mwindow->defaults->get("WORK_DIRECTORY", tmp_path); memset(asset_title,0,sizeof(asset_title)); time_t dt; time(&dt); struct tm dtm; localtime_r(&dt, &dtm); @@ -491,7 +492,7 @@ BC_Window* CreateDVD_Thread::new_gui() if( output_h != dvd_norms[norm].h ) continue; int aspect = dvd_formats[i].aspect; double dvd_aspect_ratio = - (double)dvd_aspects[aspect].w / dvd_aspects[aspect].h; + (double)dvd_aspects[aspect].w / dvd_aspects[aspect].h; if( !EQUIV(aspect_ratio, dvd_aspect_ratio) ) continue; has_standard = i; break; } @@ -575,7 +576,7 @@ CreateDVD_DiskSpace::~CreateDVD_DiskSpace() int64_t CreateDVD_DiskSpace::tmp_path_space() { - const char *path = gui->tmp_path->get_text(); + const char *path = gui->thread->tmp_path; if( access(path,R_OK+W_OK) ) return 0; struct statfs sfs; if( statfs(path, &sfs) ) return 0; @@ -617,13 +618,15 @@ CreateDVD_TmpPath::~CreateDVD_TmpPath() int CreateDVD_TmpPath::handle_event() { + get_text(); gui->disk_space->update(); return 1; } CreateDVD_AssetTitle::CreateDVD_AssetTitle(CreateDVD_GUI *gui, int x, int y, int w) - : BC_TextBox(x, y, w, 1, 0, gui->thread->asset_title, 1, MEDIUMFONT) + : BC_TextBox(x, y, w, 1, -(int)sizeof(gui->thread->asset_title), + gui->thread->asset_title, 1, MEDIUMFONT) { this->gui = gui; } @@ -632,6 +635,12 @@ CreateDVD_AssetTitle::~CreateDVD_AssetTitle() { } +int CreateDVD_AssetTitle::handle_event() +{ + get_text(); + return 1; +} + CreateDVD_Deinterlace::CreateDVD_Deinterlace(CreateDVD_GUI *gui, int x, int y) : BC_CheckBox(x, y, &gui->thread->use_deinterlace, _("Deinterlace"))