mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-28 20:05:38 +00:00
dashdemux: Fix compiler warning with clang
gstdashdemux.c:1330:13: error: implicit conversion from enumeration type 'enum _GstAdaptiveDemuxFlowReturn' to different enumeration type 'GstFlowReturn' [-Werror,-Wenum-conversion] ret = GST_ADAPTIVE_DEMUX_FLOW_SUBSEGMENT_END; ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
This commit is contained in:
parent
907e02cfa9
commit
cd3930969a
1 changed files with 1 additions and 1 deletions
|
@ -1327,7 +1327,7 @@ gst_dash_demux_chunk_received (GstAdaptiveDemux * demux,
|
|||
}
|
||||
|
||||
gst_dash_demux_stream_advance_subfragment (stream);
|
||||
ret = GST_ADAPTIVE_DEMUX_FLOW_SUBSEGMENT_END;
|
||||
ret = (GstFlowReturn) GST_ADAPTIVE_DEMUX_FLOW_SUBSEGMENT_END;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue