Skip to content
Snippets Groups Projects
  1. Nov 05, 2022
  2. Nov 04, 2022
    • François Cartegnie's avatar
      codec: faad: log version strings · 4216987a
      François Cartegnie authored
      4216987a
    • Steve Lhomme's avatar
      configure: don't build chromecast with --disable-chromecast · c3cf379a
      Steve Lhomme authored and François Cartegnie's avatar François Cartegnie committed
      c3cf379a
    • François Cartegnie's avatar
      demux: hls: re-enable subtitles · 213413f4
      François Cartegnie authored and Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf committed
      regression after a54d02b0
      213413f4
    • Claudio Cambra's avatar
      macosx: Update Xcode pbxproj file · 041b7180
      Claudio Cambra authored and Steve Lhomme's avatar Steve Lhomme committed
      
      Signed-off-by: default avatarClaudio Cambra <developer@claudiocambra.com>
      041b7180
    • Alexandre Janniaux's avatar
      video_output: remove vout_GetPicture · 2345ecc7
      Alexandre Janniaux authored and Steve Lhomme's avatar Steve Lhomme committed
      The function was only used by the two last visualization modules, but is
      now unused and unfit to the purpose of push model. Pools should be
      created locally instead of from the video output.
      
      Removing the function allows simplifying the video output.
      2345ecc7
    • Alexandre Janniaux's avatar
      video_output: remove obsolete constraint · af1278e2
      Alexandre Janniaux authored and Steve Lhomme's avatar Steve Lhomme committed
      Decoder has been pushing pictures from their own pool since the
      introduction of the push model.
      af1278e2
    • Alexandre Janniaux's avatar
      visualization: goom: use internal picture pool · 467949c9
      Alexandre Janniaux authored and Steve Lhomme's avatar Steve Lhomme committed
      Remove the dependency to vout_GetPicture by creating an internal picture
      pool inside the visualization module. For now the number of picture is
      arbitrary, since nothing in the design allows passing the number of
      required additional pictures, but it's no different than before.
      467949c9
    • Alexandre Janniaux's avatar
      visualization: goom: ensure b_progressive=true · 4d71ef49
      Alexandre Janniaux authored and Steve Lhomme's avatar Steve Lhomme committed
      With the next change into a picture_pool, we must ensure we don't create
      interlaced pictures from here.
      4d71ef49
    • Alexandre Janniaux's avatar
      visualization: visual: use internal picture pool · 540677ae
      Alexandre Janniaux authored and Steve Lhomme's avatar Steve Lhomme committed
      Remove the dependency to vout_GetPicture by creating an internal picture
      pool inside the visualization module. For now the number of picture is
      arbitrary, since nothing in the design allows passing the number of
      required additional pictures, but it's no different than before.
      540677ae
    • Alexandre Janniaux's avatar
      visual: fix potential use-after-free · d1b78570
      Alexandre Janniaux authored and Steve Lhomme's avatar Steve Lhomme committed
      p_outpic is used to modify b_progressive before it is checked to be
      non-null.
      d1b78570
    • KO Myung-Hun's avatar
      ytdl: fix compilation on OS/2 · c30e3123
      KO Myung-Hun authored and Steve Lhomme's avatar Steve Lhomme committed
      -----
        CC       demux/ytdl.lo
      demux/ytdl.c: In function 'ytdl_popen':
      demux/ytdl.c:74:31: error: 'STDERR_FILENO' undeclared (first use in this function)
         74 |     int fdv[] = { -1, fds[1], STDERR_FILENO, -1 };
            |                               ^~~~~~~~~~~~~
      demux/ytdl.c:74:31: note: each undeclared identifier is reported only once for each function it appears in
      -----
      c30e3123
    • KO Myung-Hun's avatar
      os2: thread: fix a typo · 9dd94013
      KO Myung-Hun authored and Steve Lhomme's avatar Steve Lhomme committed
      9dd94013
    • KO Myung-Hun's avatar
      cmdline: fix compilation on OS/2 · 93e39f40
      KO Myung-Hun authored and Steve Lhomme's avatar Steve Lhomme committed
      -----
        CC       config/libvlccore_la-cmdline.lo
      In file included from config/cmdline.c:30:
      ../include/vlc_charset.h:297:1: warning: 'warn_unused_result' attribute ignored [-Wattributes]
        297 | {
            | ^
      config/cmdline.c: In function 'config_LoadCmdLine':
      config/cmdline.c:274:14: error: implicit declaration of function 'isatty' [-Werror=implicit-function-declaration]
        274 |     color = (isatty(STDERR_FILENO));
            |              ^~~~~~
      config/cmdline.c:274:21: error: 'STDERR_FILENO' undeclared (first use in this function)
        274 |     color = (isatty(STDERR_FILENO));
            |                     ^~~~~~~~~~~~~
      config/cmdline.c:274:21: note: each undeclared identifier is reported only once for each function it appears in
      -----
      93e39f40
    • KO Myung-Hun's avatar
      vlc_fixups: define INET6_ADDRSTRLEN on OS/2 · 3431ed42
      KO Myung-Hun authored and Steve Lhomme's avatar Steve Lhomme committed
      This fixes a compilation error on OS/2:
      
      -----
        CC       stream_out/udp.lo
      stream_out/udp.c: In function 'CreateSDP':
      stream_out/udp.c:89:16: error: 'INET6_ADDRSTRLEN' undeclared (first use in this function); did you mean 'INET_ADDRSTRLEN'?
         89 |     char dhost[INET6_ADDRSTRLEN];
            |                ^~~~~~~~~~~~~~~~
            |                INET_ADDRSTRLEN
      stream_out/udp.c:89:16: note: each undeclared identifier is reported only once for each function it appears in
      stream_out/udp.c:89:10: warning: unused variable 'dhost' [-Wunused-variable]
         89 |     char dhost[INET6_ADDRSTRLEN];
            |          ^~~~~
      -----
      3431ed42
    • KO Myung-Hun's avatar
      vlccore: remove duplicated symbol · 38ff12ee
      KO Myung-Hun authored and Steve Lhomme's avatar Steve Lhomme committed
      This fixes a linkage error on OS/2:
      
      -----
      make.exe[3]: Entering directory `F:/lang/work/vlc/vlc.git/src'
        CCLD     libvlccore.la
      weakld: F:/lang/work/vlc/vlc.git/src/.libs/vlccore.def - warning: Export '_vlc_latch_is_ready' (int '_vlc_latch_is_ready') is already defined.
      Warning! W1121: file ldwUtpCd.: '_vlc_latch_is_ready' has already been exported
      make.exe[3]: Leaving directory `F:/lang/work/vlc/vlc.git/src'
      
      [...]
      
      make.exe[4]: Entering directory `F:/lang/work/vlc/vlc.git/modules'
        CCLD     libvlc_http.la
        CCLD     libhttps_plugin.la
      emxomf: Symbol multiply defined: _vlc_latch_is_ready
      emxomfld: a.out to omf conversion failed for '../src/.libs/vlccore_dll.a'.
      make.exe[4]: *** [libhttps_plugin.la] Error 1
      -----
      38ff12ee
Loading