mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
flvdemux: speex is also always 16KHz
This is just a cosmetic change for the logs, since the right caps for Speex is being set elsewhere. https://bugzilla.gnome.org/show_bug.cgi?id=755479
This commit is contained in:
parent
91a78053c7
commit
a937c59acd
1 changed files with 1 additions and 1 deletions
|
@ -1012,7 +1012,7 @@ gst_flv_demux_parse_tag_audio (GstFlvDemux * demux, GstBuffer * buffer)
|
|||
/* codec tags with special rates */
|
||||
if (codec_tag == 5 || codec_tag == 14)
|
||||
rate = 8000;
|
||||
else if (codec_tag == 4)
|
||||
else if ((codec_tag == 4) || (codec_tag == 11))
|
||||
rate = 16000;
|
||||
|
||||
GST_LOG_OBJECT (demux, "audio tag with %d channels, %dHz sampling rate, "
|
||||
|
|
Loading…
Reference in a new issue