From: maan Date: Sun, 11 Jun 2006 20:56:25 +0000 (+0200) Subject: osx writer: return to big endian X-Git-Tag: v0.2.14~64 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=dfe23e249eb57ab18867be6efd8749b84aa79b73 osx writer: return to big endian --- diff --git a/osx_writer.c b/osx_writer.c index c07bbd51..df419412 100644 --- a/osx_writer.c +++ b/osx_writer.c @@ -99,9 +99,9 @@ static void fill_buffer(osx_buffer *b, short *source, long size) { float *dest; - PARA_INFO_LOG("%ld\n", size); if (b->remaining) /* Non empty buffer, must still be playing */ return; + PARA_INFO_LOG("%ld\n", size); if (b->size != size) { /* * Hey! What's that? Coudn't this buffer size be fixed @@ -144,6 +144,7 @@ static OSStatus osx_callback(void * inClientData, /* wait for the results */ usleep(2000); } + PARA_INFO_LOG("buf %p: n = %ld, m= %ld\n", powd->from->buffer, n, m); /* * we dump what we can. In fact, just the necessary * should be sufficient @@ -208,8 +209,8 @@ static int osx_writer_open(struct writer_node *wn) format.mFormatID = kAudioFormatLinearPCM; /* flags specific to each format */ format.mFormatFlags = kLinearPCMFormatFlagIsFloat - | kLinearPCMFormatFlagIsPacked; - // | kLinearPCMFormatFlagIsBigEndian; + | kLinearPCMFormatFlagIsPacked + | kLinearPCMFormatFlagIsBigEndian; /* * We produce 2-channel audio. Now if we have a mega-super-hyper card for our * audio, it is its problem to convert it to 8-, 16-, 32- or 1024-channel data. @@ -285,7 +286,7 @@ static int osx_write_post_select(__a_unused struct sched *s, struct writer_node_group *wng = wn->wng; short *data = (short*)wng->buf + wn->written; - if (!*wng->loaded) + if (*wng->loaded <= wn->written) return 1; if (powd->to->remaining) /* Non empty buffer, must still be playing */ return 1;