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:
authorPeter Schlaile <peter@schlaile.de>2006-06-25 00:48:57 +0400
committerPeter Schlaile <peter@schlaile.de>2006-06-25 00:48:57 +0400
commit893df4389222c5c0fd388010a7ae3ca646f836cb (patch)
tree244a38882fe37115f61ad6a0dcb3252ac66a3d6e /source/blender/src/hddaudio.c
parent2fc243bf6c85745355dcecd7e0221c6dd0071ef2 (diff)
== Sequencer ==
Bugfixes: - Previous seqaudio-patch broke mixdown functionality (no need to init SDL on mixdown case... || -> && ) - hddaudio-crash at end of track finally fixed.
Diffstat (limited to 'source/blender/src/hddaudio.c')
-rw-r--r--source/blender/src/hddaudio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/hddaudio.c b/source/blender/src/hddaudio.c
index 6ce7359d2be..9cf50c562d6 100644
--- a/source/blender/src/hddaudio.c
+++ b/source/blender/src/hddaudio.c
@@ -377,7 +377,7 @@ static void sound_hdaudio_extract_small_block(
memset(hdaudio->decode_cache, 0,
hdaudio->decode_cache_size * sizeof(short));
- hdaudio->decode_cache_zero = 0;
+ hdaudio->decode_cache_zero = hdaudio->decode_cache;
while(av_read_frame(hdaudio->pFormatCtx, &packet) >= 0) {
int data_size;