opusparse: remove unneeded statement

commit da5c41930c removed the two uses of the
new value of data:
  channels = opus_packet_get_nb_channels (data);
  bandwidth = opus_packet_get_bandwidth (data);

Since then, data isn't being used between incrementing it by packet_offset
and going out of scope. Removing this uneeded statement.
This commit is contained in:
Luis de Bethencourt 2015-11-27 18:46:56 +00:00
parent a7475bfc6c
commit 0767a237ad

View file

@ -200,7 +200,6 @@ gst_opus_parse_handle_frame (GstBaseParse * base,
}
packet_offset = 8;
data += packet_offset;
/* for ad hoc framing, heed the framing, so we eat any padding */
payload_offset = packet_size;