aboutsummaryrefslogtreecommitdiff
path: root/libvpx/test/webm_video_source.h
diff options
context:
space:
mode:
authorJohann <johannkoenig@google.com>2016-07-21 12:09:52 -0700
committerJohann <johannkoenig@google.com>2016-07-21 12:09:52 -0700
commit68e1c830ade592be74773e249bf94e2bbfb50de7 (patch)
tree08299f7deb6079690f0a3d2118ef3882fa77bdc6 /libvpx/test/webm_video_source.h
parent96ebd06cb9832f583f7c181ec886eade209524df (diff)
downloadlibvpx-68e1c830ade592be74773e249bf94e2bbfb50de7.tar.gz
Update external/libvpx to v1.6.0
Change-Id: I9425a3d3c3524d43823bc89f9f03556420c3dd42
Diffstat (limited to 'libvpx/test/webm_video_source.h')
-rw-r--r--libvpx/test/webm_video_source.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libvpx/test/webm_video_source.h b/libvpx/test/webm_video_source.h
index 650bc52dc..825875687 100644
--- a/libvpx/test/webm_video_source.h
+++ b/libvpx/test/webm_video_source.h
@@ -62,7 +62,7 @@ class WebMVideoSource : public CompressedVideoSource {
void FillFrame() {
ASSERT_TRUE(vpx_ctx_->file != NULL);
- const int status = webm_read_frame(webm_ctx_, &buf_, &buf_sz_, &buf_sz_);
+ const int status = webm_read_frame(webm_ctx_, &buf_, &buf_sz_);
ASSERT_GE(status, 0) << "webm_read_frame failed";
if (status == 1) {
end_of_file_ = true;
@@ -72,7 +72,7 @@ class WebMVideoSource : public CompressedVideoSource {
void SeekToNextKeyFrame() {
ASSERT_TRUE(vpx_ctx_->file != NULL);
do {
- const int status = webm_read_frame(webm_ctx_, &buf_, &buf_sz_, &buf_sz_);
+ const int status = webm_read_frame(webm_ctx_, &buf_, &buf_sz_);
ASSERT_GE(status, 0) << "webm_read_frame failed";
++frame_;
if (status == 1) {