]> granicus.if.org Git - libvpx/commitdiff
update libwebm to libwebm-1.0.0.27-363-g37d9b86
authorJames Zern <jzern@google.com>
Thu, 22 Aug 2019 19:37:40 +0000 (12:37 -0700)
committerJames Zern <jzern@google.com>
Thu, 22 Aug 2019 19:37:40 +0000 (12:37 -0700)
clears a compiler warning

changelog:
https://chromium.googlesource.com/webm/libwebm/+log/81de00c..37d9b86

Change-Id: I7a9cce81cb193305220059b12071019d46155be2

third_party/libwebm/README.libvpx
third_party/libwebm/mkvmuxer/mkvmuxerutil.cc

index 714f5d0eb5aaed10bcc02bba16823ea50819a3c3..1e87afd3d163f6d5dd0c8f8bfed7a7c35a0a5d87 100644 (file)
@@ -1,5 +1,5 @@
 URL: https://chromium.googlesource.com/webm/libwebm
-Version: 81de00c43ea3c087b48a8c20337db7531b9f7612
+Version: 37d9b860ebbf40cb0f6dcb7a6fef452d798062da
 License: BSD
 License File: LICENSE.txt
 
index 7636a9f4ef9ebf72ffa107056a7708be76888bb6..6436817c9b9da45f5761e7ab844b5900191f6d8d 100644 (file)
@@ -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;