From f56918ba9c8c964a7532ddac925fc5af8d330355 Mon Sep 17 00:00:00 2001 From: John Koleszar Date: Wed, 21 Dec 2011 14:21:29 -0800 Subject: Remove legacy integer types Remove BOOL, INTn, UINTn, etc, in favor of C99-style fixed width types. Change-Id: I396636212fb5edd6b347d43cc940186d8cd1e7b5 --- vp8/encoder/onyx_int.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'vp8/encoder/onyx_int.h') diff --git a/vp8/encoder/onyx_int.h b/vp8/encoder/onyx_int.h index 07292f7f5..46951e3b9 100644 --- a/vp8/encoder/onyx_int.h +++ b/vp8/encoder/onyx_int.h @@ -259,7 +259,7 @@ typedef struct int buffer_level; int bits_off_target; - long long total_actual_bits; + int64_t total_actual_bits; int total_target_vs_actual; int worst_quality; @@ -279,7 +279,7 @@ typedef struct int zbin_over_quant; int inter_frame_target; - INT64 total_byte_count; + int64_t total_byte_count; int filter_level; @@ -673,8 +673,8 @@ typedef struct VP8_COMP unsigned int current_layer; LAYER_CONTEXT layer_context[MAX_LAYERS]; - long long frames_in_layer[MAX_LAYERS]; - long long bytes_in_layer[MAX_LAYERS]; + int64_t frames_in_layer[MAX_LAYERS]; + int64_t bytes_in_layer[MAX_LAYERS]; double sum_psnr[MAX_LAYERS]; double sum_psnr_p[MAX_LAYERS]; double total_error2[MAX_LAYERS]; -- cgit v1.2.3