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
@ -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…
x
Reference in New Issue
Block a user