dvbsuboverlay: remove unused assignment

buf is incremented just before returning, this new value is never used.
Removing unused assignment.
This commit is contained in:
Luis de Bethencourt 2015-05-26 16:39:59 +01:00
parent 6857048079
commit a818a93d14

View file

@ -1168,7 +1168,6 @@ _dvb_sub_parse_display_definition_segment (DvbSub * dvb_sub, guint8 * buf,
buf += 2;
dvb_sub->display_def.window_height =
GST_READ_UINT16_BE (buf) - dvb_sub->display_def.window_y + 1;
buf += 2;
}
return 0;