summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrank Galligan <fgalligan@google.com>2015-01-06 11:06:33 -0800
committerFrank Galligan <fgalligan@google.com>2015-01-06 11:12:44 -0800
commit238c4fa74effeb789ee211638cb6d9790b5ab316 (patch)
tree263ab39e87d7c82c3cd00374b2e64a2fcec849c0
parent0979dbb37b360d51dd5c64d9b42ba7cb997463ca (diff)
downloadlibvpx-238c4fa74effeb789ee211638cb6d9790b5ab316.tar
libvpx-238c4fa74effeb789ee211638cb6d9790b5ab316.tar.gz
libvpx-238c4fa74effeb789ee211638cb6d9790b5ab316.tar.bz2
libvpx-238c4fa74effeb789ee211638cb6d9790b5ab316.zip
Fix encode perf test.
JSON was missing a comma. Change-Id: I7e6b6251b17bc4e74b0197a449ef0313255997e7
-rw-r--r--test/encode_perf_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/encode_perf_test.cc b/test/encode_perf_test.cc
index 769e14ae2..7e9f0d6c4 100644
--- a/test/encode_perf_test.cc
+++ b/test/encode_perf_test.cc
@@ -189,7 +189,7 @@ TEST_P(VP9EncodePerfTest, PerfTest) {
printf("\t\"totalFrames\" : %u,\n", frames);
printf("\t\"framesPerSecond\" : %f,\n", fps);
printf("\t\"minPsnr\" : %f,\n", minimum_psnr);
- printf("\t\"speed\" : %d\n", kEncodePerfTestSpeeds[j]);
+ printf("\t\"speed\" : %d,\n", kEncodePerfTestSpeeds[j]);
printf("\t\"threads\" : %d\n", kEncodePerfTestThreads[k]);
printf("}\n");
}