summaryrefslogtreecommitdiff
path: root/third_party/libwebm
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2019-08-22 12:37:40 -0700
committerJames Zern <jzern@google.com>2019-08-22 12:37:40 -0700
commitf8f496fc1f7bd3470271d0a3d74b0828d6e3fcbc (patch)
treec91714b77d5bfad100ea882b360e36f056a7f795 /third_party/libwebm
parentda7c5beded832b43231ebe961bcfa5afccd4d3cf (diff)
downloadlibvpx-f8f496fc1f7bd3470271d0a3d74b0828d6e3fcbc.tar
libvpx-f8f496fc1f7bd3470271d0a3d74b0828d6e3fcbc.tar.gz
libvpx-f8f496fc1f7bd3470271d0a3d74b0828d6e3fcbc.tar.bz2
libvpx-f8f496fc1f7bd3470271d0a3d74b0828d6e3fcbc.zip
update libwebm to libwebm-1.0.0.27-363-g37d9b86
clears a compiler warning changelog: https://chromium.googlesource.com/webm/libwebm/+log/81de00c..37d9b86 Change-Id: I7a9cce81cb193305220059b12071019d46155be2
Diffstat (limited to 'third_party/libwebm')
-rw-r--r--third_party/libwebm/README.libvpx2
-rw-r--r--third_party/libwebm/mkvmuxer/mkvmuxerutil.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/third_party/libwebm/README.libvpx b/third_party/libwebm/README.libvpx
index 714f5d0eb..1e87afd3d 100644
--- a/third_party/libwebm/README.libvpx
+++ b/third_party/libwebm/README.libvpx
@@ -1,5 +1,5 @@
URL: https://chromium.googlesource.com/webm/libwebm
-Version: 81de00c43ea3c087b48a8c20337db7531b9f7612
+Version: 37d9b860ebbf40cb0f6dcb7a6fef452d798062da
License: BSD
License File: LICENSE.txt
diff --git a/third_party/libwebm/mkvmuxer/mkvmuxerutil.cc b/third_party/libwebm/mkvmuxer/mkvmuxerutil.cc
index 7636a9f4e..6436817c9 100644
--- a/third_party/libwebm/mkvmuxer/mkvmuxerutil.cc
+++ b/third_party/libwebm/mkvmuxer/mkvmuxerutil.cc
@@ -508,7 +508,7 @@ bool WriteEbmlElement(IMkvWriter* writer, uint64 type, const char* value) {
if (WriteUInt(writer, length))
return false;
- if (writer->Write(value, static_cast<const uint32>(length)))
+ if (writer->Write(value, static_cast<uint32>(length)))
return false;
return true;