From 67fb3bf639d27d5eef953916f64c315aca8a0f7e Mon Sep 17 00:00:00 2001 From: Deb Mukherjee Date: Fri, 17 Jan 2014 15:39:49 -0800 Subject: [PATCH] Change the vp8 END_USAGE typedef Makes the END_USAGE typedef compatible with the vpxenc input Change-Id: If784586fdb90a1e6f7badcb522ea9e93d4ddc030 --- vp8/common/onyx.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vp8/common/onyx.h b/vp8/common/onyx.h index 209a25d82..119e40cdc 100644 --- a/vp8/common/onyx.h +++ b/vp8/common/onyx.h @@ -39,8 +39,8 @@ extern "C" typedef enum { - USAGE_STREAM_FROM_SERVER = 0x0, - USAGE_LOCAL_FILE_PLAYBACK = 0x1, + USAGE_LOCAL_FILE_PLAYBACK = 0x0, + USAGE_STREAM_FROM_SERVER = 0x1, USAGE_CONSTRAINED_QUALITY = 0x2, USAGE_CONSTANT_QUALITY = 0x3 } END_USAGE;