summaryrefslogtreecommitdiff
path: root/vpx
diff options
context:
space:
mode:
authorYaowu Xu <yaowu@google.com>2014-05-12 17:22:10 -0700
committerYaowu Xu <yaowu@google.com>2014-05-12 17:22:10 -0700
commit89f38d1ece34f017769a63f59c3b742603e7bfa8 (patch)
treee2a058388923027b5b8d484bd978e865a123058e /vpx
parent38f3cf125efe262f661d4f1e95d6eba0fb349e57 (diff)
downloadlibvpx-89f38d1ece34f017769a63f59c3b742603e7bfa8.tar.gz
libvpx-89f38d1ece34f017769a63f59c3b742603e7bfa8.tar.bz2
libvpx-89f38d1ece34f017769a63f59c3b742603e7bfa8.zip
svc_encodeframe.c: change to use correct type
Change-Id: I2e97a1d3935944573d027a8020fe1aa391a6f27a
Diffstat (limited to 'vpx')
-rw-r--r--vpx/src/svc_encodeframe.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/vpx/src/svc_encodeframe.c b/vpx/src/svc_encodeframe.c
index 38c2d26e0..b874be76a 100644
--- a/vpx/src/svc_encodeframe.c
+++ b/vpx/src/svc_encodeframe.c
@@ -234,7 +234,8 @@ static void svc_log_reset(SvcContext *svc_ctx) {
si->message_buffer[0] = '\0';
}
-static int svc_log(SvcContext *svc_ctx, int level, const char *fmt, ...) {
+static int svc_log(SvcContext *svc_ctx, SVC_LOG_LEVEL level,
+ const char *fmt, ...) {
char buf[512];
int retval = 0;
va_list ap;