An error occurred fetching the project authors.
  1. 28 Jul, 2014 1 commit
  2. 26 Jul, 2014 1 commit
  3. 24 Jul, 2014 2 commits
  4. 03 Jul, 2014 1 commit
  5. 29 Jun, 2014 1 commit
  6. 13 Nov, 2012 1 commit
    • Jean-Baptiste Kempf's avatar
      LGPL · fef27058
      Jean-Baptiste Kempf authored
      Re-license almost all the playback modules to LGPLv2.1+ with
      authorization from their respective contributors (230+)
      
      This includes:
       - access, codec, packetizers, demux
       - audio filters, audio mixers, audio output
       - video filters, video chroma, video output
       - text renderers
       - XML parser
       - ARM NEON and SSE2 optimisations (mostly for chromas and filters)
      
      Some modules are not concerned:
       - BDA and DShow access modules because Manol Manolov is AWOL
       - Real RTSP, because it is derived from Xine
       - x264 and t140 because they are encoders only
       - DLL Loader, because it is derived from MPlayer
       - DTS packetizer, because Jon Lech Johansen is AWOL
       - Shine and WMAfixed, because they are derived from Rockbox
       - Real demuxer, as it is derived from MPlayer and Wang Bo is AWOL
       - MPC demuxer, as Yavor Doganov is AWOL
       - Tivo demuxer, because it is derived from an MPlayer fork
       - Playlist demuxer, (WPL and ZPL parts missing), because suheaven is AWOL
       - iOS audio output and video display, because author refuses the license change
       - Equalizer and compressor, because Ronald Wright is AWOL
       - Mono, Headphone and Dolby, because author refuses the license change
       - hqdn3d and yadif, because they are from MPlayer/libavfilter
       - remoteosd, because it derives from RealVNC code
       - MMX optimisations, because Ollie Lho, from SiS, is AWOL
       - Rotate, because it depends on GPL motion
      
      Nota Bene:
       - Some modules depend on GPL-only libraries, a LGPL module does not mean
         that the resulting binary module will be LGPL.
         Libraries affected would include liba52, libdvdcss, libdvdnav, libdvdread,
         faad2, libdca, libmad, libmpeg2, libpostproc, SRC, sid, zvbi and probably others.
      fef27058
  7. 19 Sep, 2012 1 commit
  8. 13 Apr, 2012 2 commits
  9. 04 Apr, 2012 1 commit
  10. 24 Jan, 2012 1 commit
  11. 19 Dec, 2011 2 commits
  12. 04 Oct, 2011 1 commit
    • Jean-Baptiste Kempf's avatar
      Modules: correct LGPL header · 504617b7
      Jean-Baptiste Kempf authored
      Cool hints:
       - If your header doesn't match "Lesser" 3 times, you are not good
       - If you use LGPLv2, you are not good
       - If you use the old FSF address, you are not good
      504617b7
  13. 02 Oct, 2011 1 commit
  14. 29 Sep, 2011 1 commit
  15. 22 Sep, 2011 1 commit
  16. 21 Sep, 2011 1 commit
    • Martin Storsjö's avatar
      omxil: Allow using IOMX on Android · c7978950
      Martin Storsjö authored
      This adds a fake OMX core implementation, relying the calls
      via IOMX to the media server, which contains the actual
      OMX core.
      
      Building with IOMX requires private Android headers from the
      Android source tree, namely the frameworks/base and
      system/core repositories. (Either froyo or gingerbread
      should work for building.) This API is not public, has no
      ABI guarantees and isn't supported.
      
      Linking also requires libraries extracted from a
      froyo/gingerbread device or emulator.
      
      Since there are no ABI guarantees, linking to this API might
      make the .so fail to load on some devices, so for proper use
      it should be in a dynamically loaded module, separate from the
      rest of the VLC core and modules.
      
      Since this can lead to crashes on unsupported devices, it should
      only be used in production on whitelisted device/firmware
      combinations that are known to work.
      Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
      c7978950