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:
authorJörg Müller <nexyon@gmail.com>2014-11-12 14:33:28 +0300
committerJörg Müller <nexyon@gmail.com>2015-07-28 15:01:52 +0300
commit8528d76dadd03680ba4a7b24ed8516bad4501b5f (patch)
treec5b492912d7ffd7bbd069891625d09d28bb19c13 /source/blender/blenkernel/intern/writeffmpeg.c
parent733073550f61cf4fbbe21aab33e9271915325109 (diff)
Audaspace: external audaspace library update.
Diffstat (limited to 'source/blender/blenkernel/intern/writeffmpeg.c')
-rw-r--r--source/blender/blenkernel/intern/writeffmpeg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/writeffmpeg.c b/source/blender/blenkernel/intern/writeffmpeg.c
index af33e688dc4..eb07a2d370b 100644
--- a/source/blender/blenkernel/intern/writeffmpeg.c
+++ b/source/blender/blenkernel/intern/writeffmpeg.c
@@ -138,7 +138,7 @@ static int write_audio_frame(FFMpegContext *context)
pkt.size = 0;
pkt.data = NULL;
- AUD_readDevice(context->audio_mixdown_device, context->audio_input_buffer, context->audio_input_samples);
+ AUD_Device_read(context->audio_mixdown_device, context->audio_input_buffer, context->audio_input_samples);
context->audio_time += (double) context->audio_input_samples / (double) c->sample_rate;
#ifdef FFMPEG_HAVE_ENCODE_AUDIO2
@@ -1215,7 +1215,7 @@ static void end_ffmpeg_impl(FFMpegContext *context, int is_autosplit)
#ifdef WITH_AUDASPACE
if (is_autosplit == false) {
if (context->audio_mixdown_device) {
- AUD_closeReadDevice(context->audio_mixdown_device);
+ AUD_Device_free(context->audio_mixdown_device);
context->audio_mixdown_device = 0;
}
}