mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
mpegts: bugfix mobile hand over linkage parse missmatch
https://bugzilla.gnome.org/show_bug.cgi?id=730901
This commit is contained in:
parent
fa1eb09520
commit
f6fdd83b7e
1 changed files with 2 additions and 2 deletions
|
@ -572,8 +572,8 @@ gst_mpegts_descriptor_parse_dvb_linkage (const GstMpegTsDescriptor * descriptor,
|
|||
hand_over = g_slice_new0 (GstMpegTsDVBLinkageMobileHandOver);
|
||||
res->linkage_data = (gpointer) hand_over;
|
||||
|
||||
hand_over->origin_type = (*data >> 7) & 0x01;
|
||||
hand_over->hand_over_type = *data & 0x0f;
|
||||
hand_over->origin_type = (*data) & 0x01;
|
||||
hand_over->hand_over_type = (*data >> 4) & 0x0f;
|
||||
data += 1;
|
||||
|
||||
if (hand_over->hand_over_type ==
|
||||
|
|
Loading…
Reference in a new issue