dont auto start with compositor, press CTRL-P or CTRL-s to activate.

git-svn-id: svn://code.dyne.org/veejay/trunk@1305 eb8d1916-c9e9-0310-b8de-cf0c9472ead5
This commit is contained in:
Niels Elburg
2009-01-04 16:01:16 +00:00
parent eb98993506
commit 53b51e0deb

View File

@@ -622,7 +622,7 @@ static int veejay_stop_playing_sample( veejay_t *info, int new_sample_id )
}
if( info->composite ) {
if( info->settings->composite == 2 ) {
info->settings->composite = 1; // back to top
info->settings->composite = info->settings->composite2; // back to top
}
}
@@ -644,7 +644,7 @@ static void veejay_stop_playing_stream( veejay_t *info, int new_stream_id )
vj_tag_disable( info->uc->sample_id );
if( info->composite ) {
if( info->settings->composite == 2 ) {
info->settings->composite = 1;
info->settings->composite = info->settings->composite2;
}
}
@@ -2804,7 +2804,8 @@ veejay_t *veejay_malloc()
info->settings->currently_processed_entry = -1;
info->settings->first_frame = 1;
info->settings->state = LAVPLAY_STATE_STOP;
info->settings->composite = 1;
info->settings->composite2 = 2;
info->settings->composite = info->settings->composite2;
info->uc->playback_mode = VJ_PLAYBACK_MODE_PLAIN;
info->uc->use_timer = 2;
info->uc->sample_key = 1;