[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [36997] trunk/blender/source/blender/ makesrna/intern/rna_scene.c: Reverting last commit, that was the minimum value, not the default.

Joerg Mueller nexyon at gmail.com
Sun May 29 12:13:28 CEST 2011


Revision: 36997
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=36997
Author:   nexyon
Date:     2011-05-29 10:13:28 +0000 (Sun, 29 May 2011)
Log Message:
-----------
Reverting last commit, that was the minimum value, not the default. Should have checked before... Can the dev in charge for the default blend file please update this value to 192? Thanks

Modified Paths:
--------------
    trunk/blender/source/blender/makesrna/intern/rna_scene.c

Modified: trunk/blender/source/blender/makesrna/intern/rna_scene.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_scene.c	2011-05-29 09:58:01 UTC (rev 36996)
+++ trunk/blender/source/blender/makesrna/intern/rna_scene.c	2011-05-29 10:13:28 UTC (rev 36997)
@@ -2442,7 +2442,7 @@
 	
 	prop= RNA_def_property(srna, "ffmpeg_audio_bitrate", PROP_INT, PROP_NONE);
 	RNA_def_property_int_sdna(prop, NULL, "ffcodecdata.audio_bitrate");
-	RNA_def_property_range(prop, 192, 384);
+	RNA_def_property_range(prop, 32, 384);
 	RNA_def_property_ui_text(prop, "Bitrate", "Audio bitrate(kb/s)");
 	RNA_def_property_update(prop, NC_SCENE|ND_RENDER_OPTIONS, NULL);
 	




More information about the Bf-blender-cvs mailing list