summaryrefslogtreecommitdiff
path: root/vp8/encoder/ethreading.c
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/ethreading.c
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/ethreading.c')
-rw-r--r--vp8/encoder/ethreading.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vp8/encoder/ethreading.c b/vp8/encoder/ethreading.c
index 8c496686a..ef8ead588 100644
--- a/vp8/encoder/ethreading.c
+++ b/vp8/encoder/ethreading.c
@@ -38,7 +38,7 @@ static THREAD_FUNCTION loopfilter_thread(void *p_data)
if (sem_wait(&cpi->h_event_start_lpf) == 0)
{
- if (cpi->b_multi_threaded == FALSE) // we're shutting down
+ if (cpi->b_multi_threaded == 0) // we're shutting down
break;
loopfilter_frame(cpi, cm);
@@ -78,7 +78,7 @@ THREAD_FUNCTION thread_encoding_proc(void *p_data)
int *segment_counts = mbri->segment_counts;
int *totalrate = &mbri->totalrate;
- if (cpi->b_multi_threaded == FALSE) // we're shutting down
+ if (cpi->b_multi_threaded == 0) // we're shutting down
break;
for (mb_row = ithread + 1; mb_row < cm->mb_rows; mb_row += (cpi->encoding_thread_count + 1))