summaryrefslogtreecommitdiff
path: root/vp8/encoder/onyx_int.h
diff options
context:
space:
mode:
authorJohn Koleszar <jkoleszar@google.com>2011-12-21 14:21:29 -0800
committerJohn Koleszar <jkoleszar@google.com>2011-12-22 09:58:40 -0800
commitf56918ba9c8c964a7532ddac925fc5af8d330355 (patch)
tree970e7a98040d139c532a6ee0f3f272dacc33c7c8 /vp8/encoder/onyx_int.h
parentbb1915274f3725d86a56432b436b249ca4430c44 (diff)
downloadlibvpx-f56918ba9c8c964a7532ddac925fc5af8d330355.tar
libvpx-f56918ba9c8c964a7532ddac925fc5af8d330355.tar.gz
libvpx-f56918ba9c8c964a7532ddac925fc5af8d330355.tar.bz2
libvpx-f56918ba9c8c964a7532ddac925fc5af8d330355.zip
Remove legacy integer types
Remove BOOL, INTn, UINTn, etc, in favor of C99-style fixed width types. Change-Id: I396636212fb5edd6b347d43cc940186d8cd1e7b5
Diffstat (limited to 'vp8/encoder/onyx_int.h')
-rw-r--r--vp8/encoder/onyx_int.h8
1 files changed, 4 insertions, 4 deletions
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];