summaryrefslogtreecommitdiff
path: root/apps/codecs/alac.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/alac.c')
-rw-r--r--apps/codecs/alac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/alac.c b/apps/codecs/alac.c
index f00ae979bf..5f39e5eacb 100644
--- a/apps/codecs/alac.c
+++ b/apps/codecs/alac.c
@@ -356,7 +356,7 @@ enum codec_status codec_start(struct codec_api* api)
356 /* Decode one block - returned samples will be host-endian */ 356 /* Decode one block - returned samples will be host-endian */
357 outputBytes = destBufferSize; 357 outputBytes = destBufferSize;
358 rb->yield(); 358 rb->yield();
359 pDestBuffer=decode_frame(&alac, buffer, &outputBytes); 359 pDestBuffer=decode_frame(&alac, buffer, &outputBytes, rb->yield);
360 360
361 /* Advance codec buffer - unless we did a read */ 361 /* Advance codec buffer - unless we did a read */
362 if ((char*)buffer!=(char*)inputBuffer) { 362 if ((char*)buffer!=(char*)inputBuffer) {