X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fmodules%2Fmod_dv%2Ftrgt_dv.cpp;h=13fed5c844d4a9a79c5de67d745c4f753c0b9717;hb=4ba22fb51d97f1ecce04dcc5e40569a4354c1bae;hp=a2f7e504f2abb1b03784c3353675051bf37f3feb;hpb=13db298693ca30c238ec0a201b5abc5f20c69595;p=synfig.git diff --git a/synfig-core/trunk/src/modules/mod_dv/trgt_dv.cpp b/synfig-core/trunk/src/modules/mod_dv/trgt_dv.cpp index a2f7e50..13fed5c 100644 --- a/synfig-core/trunk/src/modules/mod_dv/trgt_dv.cpp +++ b/synfig-core/trunk/src/modules/mod_dv/trgt_dv.cpp @@ -6,6 +6,7 @@ ** ** \legal ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley +** Copyright (c) 2007 Chris Moore ** ** This package is free software; you can redistribute it and/or ** modify it under the terms of the GNU General Public License as @@ -37,7 +38,18 @@ #include "trgt_dv.h" #include #include -#include +#if HAVE_SYS_WAIT_H + #include +#endif +#if HAVE_IO_H + #include +#endif +#if HAVE_PROCESS_H + #include +#endif +#if HAVE_FCNTL_H + #include +#endif #include #include #include @@ -51,6 +63,12 @@ using namespace synfig; using namespace std; using namespace etl; +#if defined(HAVE_FORK) && defined(HAVE_PIPE) && defined(HAVE_WAITPID) + #define UNIX_PIPE_TO_PROCESSES +#else + #define WIN32_PIPE_TO_PROCESSES +#endif + /* === G L O B A L S ======================================================= */ SYNFIG_TARGET_INIT(dv_trgt); @@ -77,9 +95,13 @@ dv_trgt::dv_trgt(const char *Filename) dv_trgt::~dv_trgt() { if(file){ +#if defined(WIN32_PIPE_TO_PROCESSES) + pclose(file); +#elif defined(UNIX_PIPE_TO_PROCESSES) fclose(file); int status; waitpid(pid,&status,0); +#endif } file=NULL; delete [] buffer; @@ -127,22 +149,40 @@ dv_trgt::init() { imagecount=desc.get_frame_start(); +#if defined(WIN32_PIPE_TO_PROCESSES) + string command; + if(wide_aspect) + command=strprintf("encodedv -w 1 - > \"%s\"\n",filename.c_str()); + else + command=strprintf("encodedv - > \"%s\"\n",filename.c_str()); + + // Open the pipe to encodedv + file=popen(command.c_str(),POPEN_BINARY_WRITE_TYPE); + + if(!file) + { + synfig::error(_("Unable to open pipe to encodedv")); + return false; + } + +#elif defined(UNIX_PIPE_TO_PROCESSES) + int p[2]; - + if (pipe(p)) { synfig::error(_("Unable to open pipe to encodedv")); return false; }; - + pid_t pid = fork(); - + if (pid == -1) { synfig::error(_("Unable to open pipe to encodedv")); return false; } - + if (pid == 0){ // Child process // Close pipeout, not needed @@ -169,7 +209,7 @@ dv_trgt::init() synfig::error(_("Unable to open pipe to encodedv")); return false; } - + if(wide_aspect) execlp("encodedv", "encodedv", "-w", "1", "-", (const char *)NULL); else @@ -189,6 +229,11 @@ dv_trgt::init() } } +#else + #error There are no known APIs for creating child processes +#endif + + // Sleep for a moment to let the pipe catch up etl::clock().sleep(0.25f);