fcc1740ee5
The variable used to store the time code is only 16 bits, but needs to be 32-bits long. OBS-URL: https://build.opensuse.org/package/show/Virtualization/virtualbox?expand=0&rev=402
14 lines
520 B
Diff
14 lines
520 B
Diff
Index: VirtualBox-5.2.6/src/VBox/Main/src-client/WebMWriter.h
|
|
===================================================================
|
|
--- VirtualBox-5.2.6.orig/src/VBox/Main/src-client/WebMWriter.h
|
|
+++ VirtualBox-5.2.6/src/VBox/Main/src-client/WebMWriter.h
|
|
@@ -91,7 +91,7 @@ class WebMWriter : public EBMLWriter
|
|
public:
|
|
|
|
/** Defines a WebM timecode. */
|
|
- typedef uint16_t WebMTimecode;
|
|
+ typedef uint32_t WebMTimecode;
|
|
|
|
/** Defines the WebM block flags data type. */
|
|
typedef uint8_t WebMBlockFlags;
|