dtsdec: remove unused value

length is set to a different value before being read. Remove initial value.
Silences compiler warning.
This commit is contained in:
Luis de Bethencourt 2015-08-19 17:42:49 +01:00
parent aa58ff3e46
commit 4a9703b434

View file

@ -461,7 +461,7 @@ gst_dtsdec_handle_frame (GstAudioDecoder * bdec, GstBuffer * buffer)
gsize size;
GstMapInfo map;
gint chans;
gint length = 0, flags, sample_rate, bit_rate, frame_length;
gint length, flags, sample_rate, bit_rate, frame_length;
GstFlowReturn result = GST_FLOW_OK;
GstBuffer *outbuf;