+2008-11-06 Zaheer Abbas Merali <zaheerabbas at merali dot org>
+
+ * gst/mpegdemux/gstmpegtsdemux.c:
+ * gst/mpegdemux/gstmpegtsdemux.h:
+ Fix typo.
+
2008-11-06 Thijs Vermeir <thijsvermeir@gmail.com>
* gst/librfb/gstrfbsrc.c:
const guint8 *end_scan = in_data + size - demux->packetsize;
guint8 *ptr_data = (guint8 *) in_data;
- while (ptr_data <= end_scan && sync_count < LENGHT_SYNC_LUT) {
+ while (ptr_data <= end_scan && sync_count < LENGTH_SYNC_LUT) {
/* if sync code is found try to store it in the LUT */
guint chance = is_mpegts_sync (ptr_data, end_scan, demux->packetsize);
if (G_LIKELY (chance > 50)) {
switch (transition) {
case GST_STATE_CHANGE_NULL_TO_READY:
demux->adapter = gst_adapter_new ();
- demux->sync_lut = g_new0 (guint8 *, LENGHT_SYNC_LUT);
+ demux->sync_lut = g_new0 (guint8 *, LENGTH_SYNC_LUT);
break;
case GST_STATE_CHANGE_READY_TO_PAUSED:
break;
#define FLUTS_NORMAL_TS_PACKETSIZE 188
#define FLUTS_M2TS_TS_PACKETSIZE 192
-#define LENGHT_SYNC_LUT 256
+#define LENGTH_SYNC_LUT 256
#define IS_MPEGTS_SYNC(data) (((data)[0] == 0x47) && \
(((data)[1] & 0x80) == 0x00) && \