mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
flvmux, rtpvp9depay: fix indentation
This commit is contained in:
parent
30a3551163
commit
df341f41dc
2 changed files with 9 additions and 10 deletions
|
@ -1334,18 +1334,18 @@ gst_flv_mux_write_header (GstFlvMux * mux)
|
||||||
return GST_FLOW_OK;
|
return GST_FLOW_OK;
|
||||||
|
|
||||||
failure_header:
|
failure_header:
|
||||||
gst_buffer_unref (metadata);
|
gst_buffer_unref (metadata);
|
||||||
|
|
||||||
failure_metadata:
|
failure_metadata:
|
||||||
if (video_codec_data != NULL)
|
if (video_codec_data != NULL)
|
||||||
gst_buffer_unref (video_codec_data);
|
gst_buffer_unref (video_codec_data);
|
||||||
|
|
||||||
failure_video_codec_data:
|
failure_video_codec_data:
|
||||||
if (audio_codec_data != NULL)
|
if (audio_codec_data != NULL)
|
||||||
gst_buffer_unref (audio_codec_data);
|
gst_buffer_unref (audio_codec_data);
|
||||||
|
|
||||||
failure_audio_codec_data:
|
failure_audio_codec_data:
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
@ -1596,8 +1596,8 @@ gst_flv_mux_handle_buffer (GstCollectPads * pads, GstCollectData * cdata,
|
||||||
|
|
||||||
ret = gst_flv_mux_write_header (mux);
|
ret = gst_flv_mux_write_header (mux);
|
||||||
if (ret != GST_FLOW_OK) {
|
if (ret != GST_FLOW_OK) {
|
||||||
gst_buffer_unref (buffer);
|
gst_buffer_unref (buffer);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
mux->state = GST_FLV_MUX_STATE_DATA;
|
mux->state = GST_FLV_MUX_STATE_DATA;
|
||||||
|
|
||||||
|
|
|
@ -81,8 +81,7 @@ gst_rtp_vp9_depay_class_init (GstRtpVP9DepayClass * gst_rtp_vp9_depay_class)
|
||||||
|
|
||||||
gst_element_class_set_static_metadata (element_class, "RTP VP9 depayloader",
|
gst_element_class_set_static_metadata (element_class, "RTP VP9 depayloader",
|
||||||
"Codec/Depayloader/Network/RTP",
|
"Codec/Depayloader/Network/RTP",
|
||||||
"Extracts VP9 video from RTP packets)",
|
"Extracts VP9 video from RTP packets)", "Stian Selnes <stian@pexip.com>");
|
||||||
"Stian Selnes <stian@pexip.com>");
|
|
||||||
|
|
||||||
object_class->dispose = gst_rtp_vp9_depay_dispose;
|
object_class->dispose = gst_rtp_vp9_depay_dispose;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue