X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=ext%2Fvcedit.c;h=70eae0591af0e91ac5dee35e9858fb3aaa7e80cf;hb=e71087631ea69d4785be8da4a962d540bd25bcab;hp=fd89008587c452b23db169e16c5435cc1a88593f;hpb=e517c533f959a75908b7361b1969146d29cdfa02;p=ruby-vorbistagger.git diff --git a/ext/vcedit.c b/ext/vcedit.c index fd89008..70eae05 100644 --- a/ext/vcedit.c +++ b/ext/vcedit.c @@ -158,9 +158,8 @@ vcedit_state_unref (vcedit_state *state) static void _v_writestring (oggpack_buffer *o, char *s, int len) { - while (len--) { + while (len--) oggpack_write (o, *s++, 8); - } } static int @@ -230,19 +229,18 @@ _fetch_next_packet (vcedit_state *s, ogg_packet *p, ogg_page *page) int result, bytes; result = ogg_stream_packetout (&s->os, p); - - if (result > 0) + if (result == 1) return 1; if (s->eosin) return 0; - while (ogg_sync_pageout (&s->oy, page) <= 0) { + while (ogg_sync_pageout (&s->oy, page) != 1) { buffer = ogg_sync_buffer (&s->oy, CHUNKSIZE); bytes = fread (buffer, 1, CHUNKSIZE, s->in); ogg_sync_wrote (&s->oy, bytes); - if (!bytes) + if (!bytes && feof (s->in)) return 0; } @@ -263,12 +261,12 @@ vcedit_error vcedit_open (vcedit_state *state) { vcedit_error ret; - char *buffer; - int bytes, i; - int chunks = 0; ogg_packet *header; ogg_packet header_main, header_comments, header_codebooks; ogg_page og; + char *buffer; + size_t bytes, total = 0; + int i = 0; state->in = fopen (state->filename, "rb"); if (!state->in) @@ -276,22 +274,21 @@ vcedit_open (vcedit_state *state) ogg_sync_init (&state->oy); - while (1) { - buffer = ogg_sync_buffer (&state->oy, CHUNKSIZE); - bytes = fread (buffer, 1, CHUNKSIZE, state->in); - - ogg_sync_wrote (&state->oy, bytes); - - if (ogg_sync_pageout (&state->oy, &og) == 1) - break; - + do { /* Bail if we don't find data in the first 40 kB */ - if (chunks++ >= 10) { + if (feof (state->in) || total >= (CHUNKSIZE * 10)) { ogg_sync_clear (&state->oy); return VCEDIT_ERR_INVAL; } - } + + buffer = ogg_sync_buffer (&state->oy, CHUNKSIZE); + + bytes = fread (buffer, 1, CHUNKSIZE, state->in); + total += bytes; + + ogg_sync_wrote (&state->oy, bytes); + } while (ogg_sync_pageout (&state->oy, &og) != 1); state->serial = ogg_page_serialno (&og); @@ -318,48 +315,47 @@ vcedit_open (vcedit_state *state) state->mainbuf = malloc (state->mainlen); memcpy (state->mainbuf, header_main.packet, header_main.bytes); - i = 0; header = &header_comments; while (i < 2) { while (i < 2) { - int result = ogg_sync_pageout (&state->oy, &og); + int result; + result = ogg_sync_pageout (&state->oy, &og); if (!result) break; /* Too little data so far */ - if (result == 1) { - ogg_stream_pagein (&state->os, &og); - - while (i < 2) { - result = ogg_stream_packetout (&state->os, header); + if (result != 1) + continue; - if (!result) - break; + ogg_stream_pagein (&state->os, &og); - if (result == -1) { - ret = VCEDIT_ERR_INVAL; - goto err; - } + while (i < 2) { + result = ogg_stream_packetout (&state->os, header); + if (!result) + break; - vorbis_synthesis_headerin (&state->vi, &state->vc, header); + if (result != 1) { + ret = VCEDIT_ERR_INVAL; + goto err; + } - if (i == 1) { - state->booklen = header->bytes; - state->bookbuf = malloc (state->booklen); - memcpy (state->bookbuf, header->packet, header->bytes); - } + vorbis_synthesis_headerin (&state->vi, &state->vc, header); - i++; - header = &header_codebooks; + if (i++ == 1) { + state->booklen = header->bytes; + state->bookbuf = malloc (state->booklen); + memcpy (state->bookbuf, header->packet, header->bytes); } + + header = &header_codebooks; } } buffer = ogg_sync_buffer (&state->oy, CHUNKSIZE); bytes = fread (buffer, 1, CHUNKSIZE, state->in); - if (bytes == 0 && i < 2) { + if (!bytes && feof (state->in) && i < 2) { ret = VCEDIT_ERR_INVAL; goto err; } @@ -520,34 +516,27 @@ vcedit_write (vcedit_state *state) /* We copy the rest of the stream (other logical streams) * through, a page at a time. */ - while (1) { - result = ogg_sync_pageout (&state->oy, &ogout); + while ((result = ogg_sync_pageout (&state->oy, &ogout))) { + if (result != 1) + continue; - if (!result) - break; - - if (result >= 0) { - /* Don't bother going through the rest, we can just - * write the page out now - */ - tmp = fwrite (ogout.header, 1, ogout.header_len, out); - if (tmp != (size_t) ogout.header_len) - goto cleanup; + /* Don't bother going through the rest, we can just + * write the page out now + */ + tmp = fwrite (ogout.header, 1, ogout.header_len, out); + if (tmp != (size_t) ogout.header_len) + goto cleanup; - tmp = fwrite (ogout.body, 1, ogout.body_len, out); - if (tmp != (size_t) ogout.body_len) - goto cleanup; - } + tmp = fwrite (ogout.body, 1, ogout.body_len, out); + if (tmp != (size_t) ogout.body_len) + goto cleanup; } buffer = ogg_sync_buffer (&state->oy, CHUNKSIZE); bytes = fread (buffer, 1, CHUNKSIZE, state->in); ogg_sync_wrote (&state->oy, bytes); - if (!bytes) { - state->eosin = 1; - break; - } + state->eosin = !bytes && feof (state->in); } fclose (out);