mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 01:30:38 +00:00
flvdemux: fix indentation
This commit is contained in:
parent
c51831a245
commit
51a0dc2df2
1 changed files with 4 additions and 2 deletions
|
@ -1058,12 +1058,14 @@ gst_flv_demux_parse_tag_audio (GstFlvDemux * demux, GstBuffer * buffer)
|
||||||
if (demux->audio_codec_data) {
|
if (demux->audio_codec_data) {
|
||||||
gst_buffer_unref (demux->audio_codec_data);
|
gst_buffer_unref (demux->audio_codec_data);
|
||||||
}
|
}
|
||||||
demux->audio_codec_data = gst_buffer_copy_region (buffer, GST_BUFFER_COPY_MEMORY,
|
demux->audio_codec_data =
|
||||||
|
gst_buffer_copy_region (buffer, GST_BUFFER_COPY_MEMORY,
|
||||||
7 + codec_data, demux->tag_data_size - codec_data);
|
7 + codec_data, demux->tag_data_size - codec_data);
|
||||||
|
|
||||||
/* Use that buffer data in the caps */
|
/* Use that buffer data in the caps */
|
||||||
if (demux->audio_pad)
|
if (demux->audio_pad)
|
||||||
gst_flv_demux_audio_negotiate (demux, codec_tag, rate, channels, width);
|
gst_flv_demux_audio_negotiate (demux, codec_tag, rate, channels,
|
||||||
|
width);
|
||||||
goto beach;
|
goto beach;
|
||||||
}
|
}
|
||||||
case 1:
|
case 1:
|
||||||
|
|
Loading…
Reference in a new issue