gst/ac3parse/gstac3parse.c: Fix alignment issue which isn't really an issue at all because the plugin hasn't been por...

Original commit message from CVS:
* gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
Fix alignment issue which isn't really an issue at all because
the plugin hasn't been ported to 0.10 yet.
This commit is contained in:
Tim-Philipp Müller 2008-05-25 21:30:40 +00:00
parent 28e2ae560a
commit 3f6175dfdc
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2008-05-25 Tim-Philipp Müller <tim.muller at collabora co uk>
* gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
Fix alignment issue which isn't really an issue at all because
the plugin hasn't been ported to 0.10 yet.
2008-05-25 Jan Schmidt <jan.schmidt@sun.com>
* configure.ac:

View file

@ -254,7 +254,7 @@ gst_ac3parse_chain (GstPad * pad, GstData * _data)
offset, skipped);
}
/* construct the header word */
header = GUINT16_TO_BE (*((guint16 *) (data + offset)));
header = GST_READ_UINT16_BE (data + offset);
/* g_print("AC3PARSE: sync word is 0x%02X\n",header); */
/* if it's a valid header, go ahead and send off the frame */
if (header == 0x0b77) {