mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-28 11:55:39 +00:00
rtph264pay: fix uninitialized variable
This commit is contained in:
parent
9f098b352b
commit
05307c46e7
1 changed files with 1 additions and 1 deletions
|
@ -623,7 +623,7 @@ static GstFlowReturn
|
|||
gst_rtp_h264_pay_send_sps_pps (GstBaseRTPPayload * basepayload,
|
||||
GstRtpH264Pay * rtph264pay, GstClockTime timestamp)
|
||||
{
|
||||
GstFlowReturn ret;
|
||||
GstFlowReturn ret = GST_FLOW_OK;
|
||||
GList *walk;
|
||||
|
||||
for (walk = rtph264pay->sps; walk; walk = g_list_next (walk)) {
|
||||
|
|
Loading…
Reference in a new issue