From 9cac181fbead28c0bf963bf2b9f82fddf3c2b7df Mon Sep 17 00:00:00 2001 From: Joerg Mueller Date: Mon, 7 Sep 2020 18:11:56 +0200 Subject: Audaspace: port changes from upstream. Adds possibility to report progress during audio mixdown. --- source/blender/editors/sound/sound_ops.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'source/blender/editors/sound') diff --git a/source/blender/editors/sound/sound_ops.c b/source/blender/editors/sound/sound_ops.c index 87b84c475fd..9d9918a6daf 100644 --- a/source/blender/editors/sound/sound_ops.c +++ b/source/blender/editors/sound/sound_ops.c @@ -386,7 +386,9 @@ static int sound_mixdown_exec(bContext *C, wmOperator *op) specs, container, codec, - bitrate); + bitrate, + NULL, + NULL); } else { result = AUD_mixdown(scene_eval->sound_scene, @@ -397,7 +399,9 @@ static int sound_mixdown_exec(bContext *C, wmOperator *op) specs, container, codec, - bitrate); + bitrate, + NULL, + NULL); } BKE_sound_reset_scene_specs(scene_eval); -- cgit v1.2.3