Skip to content
Snippets Groups Projects
  1. Oct 23, 2021
    • Alexandre Janniaux's avatar
      picture_pool: fix uninitialized warnings · 44c2aa7b
      Alexandre Janniaux authored and Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf committed
      In the case count=0, the loop is not processed and the picture array's
      single element is not initialized, leading to a warning. We don't use
      count=0 anyway so remove the case.
      
      Fix the warnings (<unknown> is the VLA):
      
      ../../src/misc/picture_pool.c: In function ‘picture_pool_NewFromFormat’:
      ../../src/misc/picture_pool.c:140:28: warning: ‘<unknown>’ may be used uninitialized [-Wmaybe-uninitialized]
        140 |     picture_pool_t *pool = picture_pool_New(count, picture);
            |                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      ../../src/misc/picture_pool.c:102:17: note: by argument 2 of type ‘picture_t * const*’ to ‘picture_pool_New’ declared here
        102 | picture_pool_t *picture_pool_New(unsigned count, picture_t *const *tab)
            |                 ^~~~~~~~~~~~~~~~
      44c2aa7b
    • Romain Vimont's avatar
      opengl: add typed set_callback for opengl filters · 53e91250
      Romain Vimont authored and Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf committed
      This will ensure that the callback has the expected signature.
      53e91250
  2. Oct 22, 2021
  3. Oct 21, 2021
  4. Oct 20, 2021
    • Pierre Ynard's avatar
      youtube.lua: descramble "n" video URL parameter by parsing javascript · 03e69578
      Pierre Ynard authored
      User agents are apparently now expected to do this; failure to do so
      results in the video file data transfer getting throttled down to rates
      such as 80 kB/s, 60 kB/s or 40 kB/s, below playback rate, and usually
      resulting in a video that hangs upon loading or every few seconds, and
      is impossible to play. This behavior seems to have first appeared in
      June, but been fully rolled out only last week.
      
      Just like with URL signatures, we interoperate with YouTube by
      fulfilling what's apparently expected from us, using the same approach
      as so far: we parse the descrambling rules from the javascript code, and
      apply them.
      
      Fixes #26174
      03e69578
    • Pierre Ynard's avatar
      youtube.lua: retry fetching descrambling javascript asset once · f3963e68
      Pierre Ynard authored
      This should help against transient errors, and parsing of the javascript
      URL isn't the part that's most likely to break.
      f3963e68
Loading