asfmux: fix alignment and endianness issue

This commit is contained in:
Tim-Philipp Müller 2010-01-11 00:24:59 +00:00
parent 0bd4d4e27b
commit 64c6ee0b4e

View file

@ -284,7 +284,7 @@ gst_asf_match_guid (const guint8 * data, const Guid * guid)
void
gst_asf_put_i32 (guint8 * buf, gint32 data)
{
*(gint32 *) buf = data;
GST_WRITE_UINT32_LE (buf, (guint32) data);
}
/**