1. 08 Mar, 2010 3 commits
  2. 07 Mar, 2010 15 commits
  3. 06 Mar, 2010 19 commits
  4. 05 Mar, 2010 3 commits
    • Rémi Denis-Courmont's avatar
      Mux: kill srand() use · 77720949
      Rémi Denis-Courmont authored
      77720949
    • Rémi Denis-Courmont's avatar
      275a5d4a
    • Rémi Denis-Courmont's avatar
      nrand48 replacement · 6268a229
      Rémi Denis-Courmont authored
      This is the POSIX linear congruential pseudo-random generator with
      48-bits of state. It is non-secure/reproducible and thread-safe.
      rand() is not thread-safe and *ahem* must not be used in VLC code.
      rand_r() is thread-safe but obsoleted in POSIX.2008.
      
      For secure random numbers, use the slower vlc_rand_bytes().
      vlc_rand_bytes() can also be used to generate the seed if you are short
      on idea for a 48-bits pseudo-random value.
      6268a229