mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 09:40:37 +00:00
commit patch from Nall for riffutil
Original commit message from CVS: commit patch from Nall for riffutil
This commit is contained in:
parent
896d1c375b
commit
63fe3ba65b
1 changed files with 3 additions and 2 deletions
|
@ -27,8 +27,8 @@
|
||||||
gulong gst_riff_fourcc_to_id(gchar *fourcc) {
|
gulong gst_riff_fourcc_to_id(gchar *fourcc) {
|
||||||
g_return_val_if_fail(fourcc != NULL, 0);
|
g_return_val_if_fail(fourcc != NULL, 0);
|
||||||
|
|
||||||
return (fourcc[0] << 0) | (fourcc[1] << 8) |
|
return GUINT32_FROM_LE((gulong)(fourcc[0] << 0) | (fourcc[1] << 8) |
|
||||||
(fourcc[2] << 16) | (fourcc[3] << 24);
|
(fourcc[2] << 16) | (fourcc[3] << 24));
|
||||||
}
|
}
|
||||||
|
|
||||||
gchar *gst_riff_id_to_fourcc(gulong id) {
|
gchar *gst_riff_id_to_fourcc(gulong id) {
|
||||||
|
@ -36,6 +36,7 @@ gchar *gst_riff_id_to_fourcc(gulong id) {
|
||||||
|
|
||||||
g_return_val_if_fail(fourcc != NULL, NULL);
|
g_return_val_if_fail(fourcc != NULL, NULL);
|
||||||
|
|
||||||
|
id = GUINT32_FROM_LE(id);
|
||||||
fourcc[0] = (id >> 0) & 0xff;
|
fourcc[0] = (id >> 0) & 0xff;
|
||||||
fourcc[1] = (id >> 8) & 0xff;
|
fourcc[1] = (id >> 8) & 0xff;
|
||||||
fourcc[2] = (id >> 16) & 0xff;
|
fourcc[2] = (id >> 16) & 0xff;
|
||||||
|
|
Loading…
Reference in a new issue