Skip to content
Snippets Groups Projects
  1. Nov 01, 2021
    • Lyndon Brown's avatar
      upnp: fix bad option default · 230068f3
      Lyndon Brown authored and Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf committed
      the lowercase "auto" default option value did not match the uppercase
      "Auto" in the choice list.
      
      option values should typically be lowercase. this fixes the mistake with
      the case of the choice value, whilst maintaining backwards compatibility
      with existing CLI usage and from saved settings files. this was the
      clear preference for fixing this resulting from the MR discussion.
      230068f3
    • Lyndon Brown's avatar
      upnp: improve auto mode handling code · 31f283ad
      Lyndon Brown authored and Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf committed
      (no functional change)
      
       - better prepare for the next commit where we need to support both "Auto"
         and "auto".
       - avoid multiple `strdup()`.
       - avoid avoidable string comparisons.
      31f283ad
    • Lyndon Brown's avatar
      rtp: fix bad option default · 0a68d39d
      Lyndon Brown authored and Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf committed
      NULL does not map to an entry in the choice list.
      
      also, mark the choice labels for translation.
      0a68d39d
    • Lyndon Brown's avatar
      mono: fix bad option default · 93211094
      Lyndon Brown authored and Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf committed
      -1 was not in the choice list.
      
      this adds the missing choice list entry corresponding to the default.
      i've made a guess at the right label and explanation to use based upon
      what seems to be happening with a -1 value in `stereo_to_mono()` and
      from bits of git history relating to it.
      93211094
    • Lyndon Brown's avatar
      dtv: fix bad option default · 7e3cba83
      Lyndon Brown authored and Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf committed
      0 was not in the choice list.
      
      it looks like 0 was interpreted by the code as the same as -1 via
      `dvb_parse_transmit_mode()`, so not a big problem.
      7e3cba83
  2. Oct 31, 2021
  3. Oct 30, 2021
  4. Oct 29, 2021
  5. Oct 28, 2021
  6. Oct 27, 2021
    • Rémi Denis-Courmont's avatar
      threads: update documentation · 1f137b77
      Rémi Denis-Courmont authored
      As briefly noted in 0a8a5333, that
      changeset removed the confusing and messy limitations of mutex
      assertions. Previously, it would only work if:
      - checking for hold, not for non-hold,
      - POSIX threads was used,
      - LibVLC was built in debug mode,
      - the mutex was initialised dynamically (not `VLC_STATIC_MUTEX`).
      1f137b77
  7. Oct 26, 2021
  8. Oct 25, 2021
    • Romain Vimont's avatar
      opengl: move sampler out of the filter engine · c1770ffc
      Romain Vimont authored and Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf committed
      A sampler now allows to handle chroma conversion from any OpenGL
      picture provided by the filter. It can be the input picture directly
      (most of the time), or any picture produced by the filter itself.
      
      Therefore, make the sampler a simple helper for filters, independent of
      the filter engine.
      c1770ffc
Loading