1. 25 May, 2012 3 commits
  2. 24 May, 2012 19 commits
  3. 23 May, 2012 8 commits
  4. 22 May, 2012 8 commits
  5. 21 May, 2012 2 commits
    • Rémi Denis-Courmont's avatar
      waveout: correct scale · 669ce09e
      Rémi Denis-Courmont authored
      0xffff is full volume, which I understand to mean 0dB.
      669ce09e
    • David Fuhrmann's avatar
      macosx: fix subtile bug in initialization of mainwindow · 0d847ccb
      David Fuhrmann authored
      Currently, two objects of the class VLCMainWindow are generated. The first is alloated
      from intf.m (triggered by the first log message that arrives) and is initialized by
      both init and initWithContentRect. The second object is created from inside the nib file,
      and is instantiated ONLY with initWithContentRect. Therefore, up to now _o_sharedInstance
      had the wrong object and all calls to sharedInstance would cause problems.
      But somehow, o_mainwindow in intf.m is updated to the correct second object, although it holds
      the first object at start.
      
      Furthermore, o_fspanel is also instantiated through the nib file.
      0d847ccb