Skip to content
Snippets Groups Projects
  1. Jul 17, 2018
  2. Jul 15, 2018
    • Rémi Denis-Courmont's avatar
      lib: remove VLM API · 3de6692c
      Rémi Denis-Courmont authored
      There does not appear to be any real user. The "broadcast"
      functionality can be reproduced more simply with the LibVLC media
      player API. The "VoD" functionality does not make much sense outside of
      the VLC executable process.
      3de6692c
  3. Jul 11, 2018
  4. Jul 09, 2018
  5. Jun 22, 2018
  6. Jun 13, 2018
  7. Jun 10, 2018
  8. Jun 09, 2018
  9. May 20, 2018
  10. May 04, 2018
  11. May 03, 2018
  12. Apr 18, 2018
  13. Mar 18, 2018
  14. Mar 16, 2018
  15. Feb 20, 2018
  16. Feb 02, 2018
  17. Dec 16, 2017
  18. Dec 10, 2017
  19. Nov 30, 2017
  20. Nov 24, 2017
  21. Nov 23, 2017
  22. Oct 08, 2017
  23. Aug 31, 2017
  24. Aug 30, 2017
    • Thomas Guillem's avatar
      gl: fix incorrect plugin dependencies · fc4114f4
      Thomas Guillem authored
      The GL/GLES2 plugins doesn't depends anymore on X11, WAYLAND, VAAPI or other
      hardware libs.
      
      Move all converters (that were built in GL plugins) in separate plugins, with a
      "glconv" plugin capability. This new type of module will be loaded by GL
      plugins when a video format is opaque. Otherwise, the built-in software
      converter (that handle RGB,YUV,YXZ12) will be used.
      
      Each new converters plugins depends only on hardware libs like VAAPI-X11,
      VAAPI-WL. These news plugins don't depend on Open GL / GLES2. Therefore, one
      glconv plugin can be used by a GL and a GLES2 plugin.
      
      Fixes #18575
      fc4114f4
  25. Aug 09, 2017
  26. Aug 06, 2017
    • Rémi Denis-Courmont's avatar
      sdl: remove video output · 4b8a2755
      Rémi Denis-Courmont authored
      The SDL video output has been forcefully disabled on MacOS X for 12
      years. It has also been disabled in Windows builds for over 6 years.
      Finally, it has been broken on X11 due to lack of windowing
      integration, for several years, cannot be fixed without changes to
      the SDL API, and is completely useless.
      4b8a2755
    • Rémi Denis-Courmont's avatar
      directfb: remove legacy video output · 8e1a0e87
      Rémi Denis-Courmont authored
      The DirectFB project has been dead for several years, and is ostensibly
      not used. If you really need direct access to the Linux frame buffer,
      there is still the raw LinuxFB module for the time being.
      8e1a0e87
  27. Jul 31, 2017
  28. Jul 24, 2017
  29. Jul 09, 2017
    • Rémi Denis-Courmont's avatar
      skiptags: properly conceal ID3/APE tags (fixes #18501) · 2c34ea75
      Rémi Denis-Courmont authored
      As most demuxers cannot handle tags at the beginning of their input
      streams, the demuxer code has automatically skipped them for a long
      time.
      
      Unfortunately, a number of demuxers also assume that the initial stream
      byte offset is zero (while some others seem to assume zero in some paths
      and not in others). This seems like a reasonable assumption. And even if
      it were not, fixing all affected stream filters and demuxers to perform
      only relative seeking seems impractical and unpalatable.
      
      This stream filter shifts the stream byte offset so that the tags are
      entirely invisible, and the demuxer can assume the start is at offset 0.
      
      Of couse, the tags must still be accessible to the meta extraction
      engine(s). The TagLib plugin uses "low-level" vlc_access_NewMRL() so it
      is not subject to stream filters, and not affected by this change.
      (This change does however remove tags from "demuxdump".)
      
      NOTE: On the one hand, this also enables demuxing a file format with
      embedded absolute file offsets, if the tags were prepended after muxing.
      On the other hand, it conversely breaks demuxing such a file format if
      the tags are added during muxing. As far as I know, tags are normally
      appended rather than prepended to avoid this ambiguity.
      2c34ea75
Loading