ref: b6aa783d8023b87c3abf9e6294a210e2c815d533
parent: 9bcd75056582cce1ee8cd2ebeb2fbace0c9d9629
parent: 9ba08208d386218db2f7a91927050cd7ace908ca
author: Frank Galligan <[email protected]>
date: Tue Sep 24 05:36:30 EDT 2013
Merge "vpxenc: Stop writing the WebM FrameRate element."
--- a/vpxenc.c
+++ b/vpxenc.c
@@ -725,7 +725,6 @@
{
unsigned int pixelWidth = cfg->g_w;
unsigned int pixelHeight = cfg->g_h;
- float frameRate = (float)fps->num / (float)fps->den;
EbmlLoc videoStart;
Ebml_StartSubElement(glob, &videoStart, Video);
@@ -732,7 +731,6 @@
Ebml_SerializeUnsigned(glob, PixelWidth, pixelWidth);
Ebml_SerializeUnsigned(glob, PixelHeight, pixelHeight);
Ebml_SerializeUnsigned(glob, StereoMode, stereo_fmt);
- Ebml_SerializeFloat(glob, FrameRate, frameRate);
Ebml_EndSubElement(glob, &videoStart);
}
Ebml_EndSubElement(glob, &start); /* Track Entry */