Skip to content

Commit

Permalink
inherit block is now available to user
Browse files Browse the repository at this point in the history
  • Loading branch information
SAPikachu committed Feb 11, 2012
1 parent bf80666 commit 0636271
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AVS_SplitProcess/MP_Pipeline.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,6 @@ void MP_Pipeline::create_pipeline(IScriptEnvironment* env)
while (true)
{
sprintf(next_script_part, "%s()\n", LOAD_PLUGIN_FUNCTION_NAME);
copy_inherit_block(current_script_part, next_script_part);

int process_id = slave_count;
sprintf_append(next_script_part, "%s_%d(0)\n", GET_UPSTREAM_CLIP_FUNCTION_NAME, process_id);
Expand All @@ -364,6 +363,7 @@ void MP_Pipeline::create_pipeline(IScriptEnvironment* env)
memset(splitter_pos, 0, splitter_length);

strcat(current_script_part, current_pos);
copy_inherit_block(current_script_part, next_script_part);

process_pass_clip_statement(current_script_part, next_script_part, env);

Expand Down

0 comments on commit 0636271

Please sign in to comment.