From c8673be3d6382bd49994c78347d17f8ef64744f5 Mon Sep 17 00:00:00 2001 From: Peter Schlaile Date: Sun, 11 May 2008 20:40:55 +0000 Subject: == FFMPEG == Add ffmpeg expert option (meaning _all_ ffmpeg option) to render dialog using properties. Also adds: H264 preset, that doesn't screw up output. --- source/blender/makesdna/DNA_scene_types.h | 1 + 1 file changed, 1 insertion(+) (limited to 'source/blender/makesdna') diff --git a/source/blender/makesdna/DNA_scene_types.h b/source/blender/makesdna/DNA_scene_types.h index 45833695ffe..7b1b979b777 100644 --- a/source/blender/makesdna/DNA_scene_types.h +++ b/source/blender/makesdna/DNA_scene_types.h @@ -98,6 +98,7 @@ typedef struct FFMpegCodecData { int rc_buffer_size; int mux_packet_size; int mux_rate; + IDProperty *properties; } FFMpegCodecData; -- cgit v1.2.3 From 9fdb4965a32fdc5fbfe6ad169630672e70d85470 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Wed, 14 May 2008 09:00:22 +0000 Subject: NLA and IPO now have the "AfterTrans Keyframe" option that prevents the creation of duplicate keyframes after transform. --- source/blender/makesdna/DNA_space_types.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'source/blender/makesdna') diff --git a/source/blender/makesdna/DNA_space_types.h b/source/blender/makesdna/DNA_space_types.h index 86f6e4bcbe4..619dfbb43a0 100644 --- a/source/blender/makesdna/DNA_space_types.h +++ b/source/blender/makesdna/DNA_space_types.h @@ -524,7 +524,8 @@ typedef struct SpaceImaSel { #define SI_DRAW_STRETCH 1<<21 /* SpaceIpo->flag */ -#define SIPO_LOCK_VIEW 1<<0 +#define SIPO_LOCK_VIEW 1<<0 +#define SIPO_NOTRANSKEYCULL 1<<1 /* SpaceText flags (moved from DNA_text_types.h) */ @@ -616,6 +617,7 @@ typedef struct SpaceImaSel { #define SNLA_ALLKEYED 1 #define SNLA_ACTIVELAYERS 2 #define SNLA_DRAWTIME 4 +#define SNLA_NOTRANSKEYCULL 8 /* time->flag */ /* show timing in frames instead of in seconds */ -- cgit v1.2.3 From 584d84eafdcf9d768ecb63f57d9d8606589bf220 Mon Sep 17 00:00:00 2001 From: Ken Hughes Date: Thu, 15 May 2008 23:33:30 +0000 Subject: Remove PLATFORM_LINKFLAGS for makesdna, was breaking debug builds with MSVC8. --- source/blender/makesdna/intern/SConscript | 1 - 1 file changed, 1 deletion(-) (limited to 'source/blender/makesdna') diff --git a/source/blender/makesdna/intern/SConscript b/source/blender/makesdna/intern/SConscript index 512e6817666..acba9ae2d1d 100644 --- a/source/blender/makesdna/intern/SConscript +++ b/source/blender/makesdna/intern/SConscript @@ -26,7 +26,6 @@ if sys.platform != 'cygwin': makesdna_tool.Append (CCFLAGS = cflags) makesdna_tool.Append (CPPDEFINES = defines) makesdna_tool.Append (LIBPATH = '#'+root_build_dir+'/lib') -makesdna_tool.Append (LINKFLAGS = env['PLATFORM_LINKFLAGS']) if env['BF_PROFILE']: makesdna_tool.Append (LINKFLAGS = env['BF_PROFILE_FLAGS']) -- cgit v1.2.3 From 99a2e7e92e9dc84edd2ccd7abbb0dc9d922d0530 Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Thu, 22 May 2008 14:12:09 +0000 Subject: Comments!!1 --- source/blender/makesdna/DNA_object_types.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'source/blender/makesdna') diff --git a/source/blender/makesdna/DNA_object_types.h b/source/blender/makesdna/DNA_object_types.h index de89c0e51cb..83168248b9a 100644 --- a/source/blender/makesdna/DNA_object_types.h +++ b/source/blender/makesdna/DNA_object_types.h @@ -59,6 +59,27 @@ typedef struct bDeformGroup { char name[32]; } bDeformGroup; +/** + * The following illustrates the orientation of the + * bounding box in local space + * + * + * Z Y + * | / + * |/ + * .-----X + * + * + * 2----------6 + * /| /| + * / | / | + * 1----------5 | + * | | | | + * | 3-------|--7 + * | / | / + * |/ |/ + * 0----------4 + */ typedef struct BoundBox { float vec[8][3]; int flag, pad; -- cgit v1.2.3