diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2017-08-17 15:01:09 +0200 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2017-11-01 13:08:56 +0100 |
commit | f595e889b91a674eb94db7ca4d832da54f5194cd (patch) | |
tree | 273b4a7cc465477e428d0c628a19a61301baaae0 /source/pdf/pdf-object.c | |
parent | 2910531c99e80bede06d2f1460459e8f6ce79961 (diff) | |
download | mupdf-f595e889b91a674eb94db7ca4d832da54f5194cd.tar.xz |
Use int64_t for public file API offsets.
Don't mess with conditional compilation with LARGEFILE -- always expose
64-bit file offsets in our public API.
Diffstat (limited to 'source/pdf/pdf-object.c')
-rw-r--r-- | source/pdf/pdf-object.c | 29 |
1 files changed, 5 insertions, 24 deletions
diff --git a/source/pdf/pdf-object.c b/source/pdf/pdf-object.c index def683d0..7788869e 100644 --- a/source/pdf/pdf-object.c +++ b/source/pdf/pdf-object.c @@ -45,7 +45,7 @@ typedef struct pdf_obj_num_s pdf_obj super; union { - fz_off_t i; + int64_t i; float f; } u; } pdf_obj_num; @@ -111,7 +111,7 @@ pdf_new_bool(fz_context *ctx, pdf_document *doc, int b) } pdf_obj * -pdf_new_int(fz_context *ctx, pdf_document *doc, int i) +pdf_new_int(fz_context *ctx, pdf_document *doc, int64_t i) { pdf_obj_num *obj; obj = Memento_label(fz_malloc(ctx, sizeof(pdf_obj_num)), "pdf_obj(int)"); @@ -123,18 +123,6 @@ pdf_new_int(fz_context *ctx, pdf_document *doc, int i) } pdf_obj * -pdf_new_int_offset(fz_context *ctx, pdf_document *doc, fz_off_t i) -{ - pdf_obj_num *obj; - obj = Memento_label(fz_malloc(ctx, sizeof(pdf_obj_num)), "pdf_obj(offset)"); - obj->super.refs = 1; - obj->super.kind = PDF_INT; - obj->super.flags = 0; - obj->u.i = i; - return &obj->super; -} - -pdf_obj * pdf_new_real(fz_context *ctx, pdf_document *doc, float f) { pdf_obj_num *obj; @@ -315,7 +303,7 @@ int pdf_to_int(fz_context *ctx, pdf_obj *obj) return 0; } -fz_off_t pdf_to_offset(fz_context *ctx, pdf_obj *obj) +int64_t pdf_to_int64(fz_context *ctx, pdf_obj *obj) { RESOLVE(obj); if (obj < PDF_OBJ__LIMIT) @@ -323,7 +311,7 @@ fz_off_t pdf_to_offset(fz_context *ctx, pdf_obj *obj) if (obj->kind == PDF_INT) return NUM(obj)->u.i; if (obj->kind == PDF_REAL) - return (fz_off_t)(NUM(obj)->u.f + 0.5f); /* No roundf in MSVC */ + return (NUM(obj)->u.f + 0.5f); /* No roundf in MSVC */ return 0; } @@ -365,14 +353,7 @@ int pdf_to_str_len(fz_context *ctx, pdf_obj *obj) return STRING(obj)->len; } -void pdf_set_int(fz_context *ctx, pdf_obj *obj, int i) -{ - if (!OBJ_IS_INT(obj)) - return; - NUM(obj)->u.i = i; -} - -void pdf_set_int_offset(fz_context *ctx, pdf_obj *obj, fz_off_t i) +void pdf_set_int(fz_context *ctx, pdf_obj *obj, int64_t i) { if (!OBJ_IS_INT(obj)) return; |