adaptivedemux2-stream: Silence a compiler warning

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2839>
This commit is contained in:
Jan Schmidt 2022-07-22 03:32:39 +10:00 committed by Tim-Philipp Müller
parent 1060f72f90
commit d60c2f46e2

View file

@ -1726,7 +1726,9 @@ gst_adaptive_demux2_stream_load_a_fragment (GstAdaptiveDemux2Stream * stream)
} }
} }
switch (ret) { /* Cast to int avoids a compiler warning that
* GST_ADAPTIVE_DEMUX_FLOW_LOST_SYNC is not in the GstFlowReturn enum */
switch ((int) ret) {
case GST_FLOW_OK: case GST_FLOW_OK:
break; /* all is good, let's go */ break; /* all is good, let's go */
case GST_FLOW_EOS: case GST_FLOW_EOS: