]> granicus.if.org Git - libvpx/blobdiff - third_party/libwebm/mkvmuxertypes.hpp
Revert "third_party: Roll libwebm snapshot."
[libvpx] / third_party / libwebm / mkvmuxertypes.hpp
similarity index 70%
rename from third_party/libwebm/mkvmuxer/mkvmuxertypes.h
rename to third_party/libwebm/mkvmuxertypes.hpp
index f5c80f619543e63b069b9605f09ad30ba5cff3d7..d0fc9fec8811a088b06773aea063b0fc860cac64 100644 (file)
@@ -6,8 +6,8 @@
 // in the file PATENTS.  All contributing project authors may
 // be found in the AUTHORS file in the root of the source tree.
 
-#ifndef MKVMUXER_MKVMUXERTYPES_H_
-#define MKVMUXER_MKVMUXERTYPES_H_
+#ifndef MKVMUXERTYPES_HPP
+#define MKVMUXERTYPES_HPP
 
 // Copied from Chromium basictypes.h
 // A macro to disallow the copy constructor and operator= functions
   TypeName(const TypeName&);                       \
   void operator=(const TypeName&)
 
-#endif  // MKVMUXER_MKVMUXERTYPES_HPP_
+namespace mkvmuxer {
+
+typedef unsigned char uint8;
+typedef short int16;
+typedef int int32;
+typedef unsigned int uint32;
+typedef long long int64;
+typedef unsigned long long uint64;
+
+}  // end namespace mkvmuxer
+
+#endif  // MKVMUXERTYPES_HPP