summaryrefslogtreecommitdiff
path: root/vp8/encoder/onyx_int.h
diff options
context:
space:
mode:
authorYaowu Xu <yaowu@google.com>2012-08-10 17:05:46 -0700
committerYaowu Xu <yaowu@google.com>2012-08-10 17:26:54 -0700
commitb91219e29eb52d429cc5051c7e7ab5aaac8e7d02 (patch)
treee44a6af333c64c91a79d72f1dd673dc1195d14bf /vp8/encoder/onyx_int.h
parent1bbde82c28861fbc19455fcb758543c3fa811a6f (diff)
downloadlibvpx-b91219e29eb52d429cc5051c7e7ab5aaac8e7d02.tar
libvpx-b91219e29eb52d429cc5051c7e7ab5aaac8e7d02.tar.gz
libvpx-b91219e29eb52d429cc5051c7e7ab5aaac8e7d02.tar.bz2
libvpx-b91219e29eb52d429cc5051c7e7ab5aaac8e7d02.zip
extend the range of encoding time
The commit also corrects unit of encoding from microsecond to milisecond. Change-Id: I030108e90f89f33dfad2d092dc8991db81979715
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 d8b7d132c..ff3a21107 100644
--- a/vp8/encoder/onyx_int.h
+++ b/vp8/encoder/onyx_int.h
@@ -629,10 +629,10 @@ typedef struct VP8_COMP {
vp8_refining_search_fn_t refining_search_sad;
vp8_diamond_search_fn_t diamond_search_sad;
vp8_variance_fn_ptr_t fn_ptr[BLOCK_MAX_SEGMENTS];
- unsigned int time_receive_data;
- unsigned int time_compress_data;
- unsigned int time_pick_lpf;
- unsigned int time_encode_mb_row;
+ uint64_t time_receive_data;
+ uint64_t time_compress_data;
+ uint64_t time_pick_lpf;
+ uint64_t time_encode_mb_row;
int base_skip_false_prob[QINDEX_RANGE][3];