adaptivedemux2-stream: Silence a compiler warning
authorJan Schmidt <jan@centricular.com>
Thu, 21 Jul 2022 17:32:39 +0000 (03:32 +1000)
committerTim-Philipp Müller <tim@centricular.com>
Thu, 4 Aug 2022 13:49:49 +0000 (14:49 +0100)
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2839>

subprojects/gst-plugins-good/ext/adaptivedemux2/gstadaptivedemux-stream.c

index 4bf61e7..cfc0882 100644 (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:
       break;                    /* all is good, let's go */
     case GST_FLOW_EOS: