[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [27011] trunk/blender: Calling AV-sync in UI to what it really is!

Joerg Mueller nexyon at gmail.com
Thu Feb 18 15:37:17 CET 2010


Revision: 27011
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=27011
Author:   nexyon
Date:     2010-02-18 15:37:17 +0100 (Thu, 18 Feb 2010)

Log Message:
-----------
Calling AV-sync in UI to what it really is!

Modified Paths:
--------------
    trunk/blender/release/scripts/ui/space_time.py
    trunk/blender/source/blender/makesrna/intern/rna_scene.c

Modified: trunk/blender/release/scripts/ui/space_time.py
===================================================================
--- trunk/blender/release/scripts/ui/space_time.py	2010-02-18 14:17:53 UTC (rev 27010)
+++ trunk/blender/release/scripts/ui/space_time.py	2010-02-18 14:37:17 UTC (rev 27011)
@@ -72,7 +72,7 @@
             subsub = row.row()
             subsub.prop(tools, "record_with_nla", toggle=True)
 
-        layout.prop(scene, "sync_audio", text="Realtime", toggle=True, icon='SPEAKER')
+        layout.prop(scene, "sync_audio", text="AV-sync", toggle=True, icon='SPEAKER')
 
         layout.separator()
 
@@ -152,7 +152,7 @@
 
         layout.separator()
 
-        layout.prop(scene, "sync_audio", text="Realtime Playback", icon='SPEAKER')
+        layout.prop(scene, "sync_audio", text="AV-sync", icon='SPEAKER')
         layout.prop(scene, "mute_audio")
         layout.prop(scene, "scrub_audio")
 

Modified: trunk/blender/source/blender/makesrna/intern/rna_scene.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_scene.c	2010-02-18 14:17:53 UTC (rev 27010)
+++ trunk/blender/source/blender/makesrna/intern/rna_scene.c	2010-02-18 14:37:17 UTC (rev 27011)
@@ -2811,7 +2811,7 @@
 
 	prop= RNA_def_property(srna, "sync_audio", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "audio.flag", AUDIO_SYNC);
-	RNA_def_property_ui_text(prop, "Audio Sync", "Play back and sync with audio from Sequence Editor for realtime playback");
+	RNA_def_property_ui_text(prop, "Audio Sync", "Play back and sync with audio clock, dropping frames if frame display is too slow");
 	RNA_def_property_update(prop, NC_SCENE, NULL);
 
 	prop= RNA_def_property(srna, "scrub_audio", PROP_BOOLEAN, PROP_NONE);





More information about the Bf-blender-cvs mailing list