Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-02-08 00:39:51 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-02-08 00:39:51 +0400
commit2bfaade0acc7ee421b0e52820a9a33751fc7bbc5 (patch)
tree3899958bd892172477cb22f7e4d84c23271f9ee6 /source/blender/makesrna/intern
parent67e32b4a7b085070d17ce213cec31752242f73c8 (diff)
Returned back maximal value of bitrate. Higher values are actually makes sense with DNxHD only.
Diffstat (limited to 'source/blender/makesrna/intern')
-rw-r--r--source/blender/makesrna/intern/rna_scene.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index fe601b9bd19..1060c1b52ac 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -2875,7 +2875,7 @@ static void rna_def_scene_ffmpeg_settings(BlenderRNA *brna)
prop = RNA_def_property(srna, "video_bitrate", PROP_INT, PROP_NONE);
RNA_def_property_int_sdna(prop, NULL, "video_bitrate");
- RNA_def_property_range(prop, 1, 220000);
+ RNA_def_property_range(prop, 1, 14000);
RNA_def_property_ui_text(prop, "Bitrate", "Video bitrate (kb/s)");
RNA_def_property_update(prop, NC_SCENE|ND_RENDER_OPTIONS, NULL);