mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-06 14:32:31 +00:00
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:
parent
aa58ff3e46
commit
4a9703b434
1 changed files with 1 additions and 1 deletions
|
@ -461,7 +461,7 @@ gst_dtsdec_handle_frame (GstAudioDecoder * bdec, GstBuffer * buffer)
|
||||||
gsize size;
|
gsize size;
|
||||||
GstMapInfo map;
|
GstMapInfo map;
|
||||||
gint chans;
|
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;
|
GstFlowReturn result = GST_FLOW_OK;
|
||||||
GstBuffer *outbuf;
|
GstBuffer *outbuf;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue