Skip to content
Snippets Groups Projects
  1. Sep 07, 2020
  2. Aug 31, 2020
  3. Aug 24, 2020
  4. Aug 20, 2020
  5. Aug 18, 2020
  6. Aug 13, 2020
  7. Aug 11, 2020
  8. Aug 10, 2020
  9. Aug 08, 2020
  10. Aug 07, 2020
  11. Aug 04, 2020
  12. Jul 31, 2020
  13. Jul 29, 2020
    • Jordan Petridіs's avatar
      auparse: fix compiler warnings · 516db3f1
      Jordan Petridіs authored
      GCC 10 was complaining like following. It really is complaining about default cases returning
      with potentially unitialized *desval, but those cases in the switch should never be hit.
      
      ```
       ../subprojects/gst-plugins-good/gst/auparse/gstauparse.c: In function 'gst_au_parse_chain':
      ../subprojects/gst-plugins-good/gst/auparse/gstauparse.c:481:37: error: 'timestamp' may be used uninitialized in this function [-Werror=maybe-uninitialized]
        481 |       GST_BUFFER_TIMESTAMP (outbuf) = timestamp;
      ../subprojects/gst-plugins-good/gst/auparse/gstauparse.c:482:36: error: 'duration' may be used uninitialized in this function [-Werror=maybe-uninitialized]
        482 |       GST_BUFFER_DURATION (outbuf) = duration;
      ../subprojects/gst-plugins-good/gst/auparse/gstauparse.c:480:34: error: 'offset' may be used uninitialized in this function [-Werror=maybe-uninitialized]
        480 |       GST_BUFFER_OFFSET (outbuf) = offset;
      cc1: all warnings being treated as errors
      ```
      
      Part-of: <gstreamer/gst-plugins-good!671>
      516db3f1
    • George Kiagiadakis's avatar
  14. Jul 28, 2020
  15. Jul 27, 2020
  16. Jul 24, 2020
  17. Jul 23, 2020
Loading