X-Git-Url: https://git.sesse.net/?p=fjl;a=blobdiff_plain;f=dehuff.c;h=af16b512a83c0f796fd24ff8a499e15fe3719817;hp=9b296a798075bf6f6f01e2bd439c8c4b7da1bba2;hb=8a495c6c9b595e9f188ef703d71fa868cbb1605d;hpb=cc0c0e56d8269e91f23739b57faf67d5b5cc0794 diff --git a/dehuff.c b/dehuff.c index 9b296a7..af16b51 100644 --- a/dehuff.c +++ b/dehuff.c @@ -4,40 +4,11 @@ #include "bytesource.h" #include "dehuff.h" - -void reliable_read(raw_input_func_t* input_func, void* userdata, uint8_t* buf, size_t len) -{ - while (len > 0) { - ssize_t bytes_read = input_func(userdata, buf, len); - assert(bytes_read <= (ssize_t)len); - - // TODO: We need better error handling here. setjmp()/longjmp() - // should hopefully do the trick, but we need to take care for - // suspension. - if (bytes_read == (ssize_t)-1) { - fprintf(stderr, "Input function returned error\n"); - exit(1); - } - if (bytes_read == 0) { - fprintf(stderr, "Premature EOF\n"); - exit(1); - } - - buf += bytes_read; - len -= bytes_read; - } -} - -uint16_t read_length(raw_input_func_t* input_func, void* userdata) -{ - uint8_t buf[2]; - reliable_read(input_func, userdata, buf, 2); - return (buf[0] << 8) | buf[1]; -} +#include "input.h" void read_huffman_tables(huffman_tables_t* dst, input_func_t* input_func, void* userdata) { - size_t len = read_length(input_func, userdata); + size_t len = read_uint16(input_func, userdata); assert(len > 2); len -= 2; @@ -61,7 +32,7 @@ void read_huffman_tables(huffman_tables_t* dst, input_func_t* input_func, void* exit(1); } - struct huffman_table* tbl = dst[table_class][table_dest]; + struct huffman_table* tbl = &((*dst)[table_class][table_dest]); if (len < 16) { fprintf(stderr, "Short read for num_codes\n"); exit(1);