mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
asfmux: fix alignment and endianness issue
This commit is contained in:
parent
0bd4d4e27b
commit
64c6ee0b4e
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue