1. 28 Oct, 2018 1 commit
  2. 27 Oct, 2018 11 commits
  3. 26 Oct, 2018 6 commits
  4. 25 Oct, 2018 4 commits
  5. 24 Oct, 2018 16 commits
  6. 23 Oct, 2018 2 commits
    • Matsuzawa Tomohiro's avatar
      avformat/libsrt: add several options supported in srt 1.3.0 · c2ac3b8e
      Matsuzawa Tomohiro authored
      Several SRT options are missing. Since pkg_config requires libsrt v1.3.0 and above, it should be able to support options added in libsrt v1.3.0 and below.
      This commit adds 8 SRT options.
      sndbuf, rcvbuf, lossmaxttl, minversion, streamid, smoother, messageapi and transtype
      The keys of option are equivalent to stransmit.
      https://github.com/Haivision/srt/blob/v1.3.0/apps/socketoptions.hpp#L196-L223Signed-off-by: 's avatarMarton Balint <cus@passwd.hu>
      c2ac3b8e
    • Dave Rice's avatar
      avdevice/sdl2: add option to set window position · 110b4a49
      Dave Rice authored
      Allows arrangement of multiple windows such as:
      ffmpeg -re -f lavfi -i mandelbrot -f sdl -window_x 1 -window_y 1 mandelbrot -vf waveform,format=yuv420p -f sdl -window_x 641 -window_y 1 waveform -vf vectorscope,format=yuv420p -f sdl -window_x 1 -window_y 481 vectorscop
      
      Some changes by Marton Balint:
      - allow negative position (partially or fully out-of-screen positions seem to
        be sanitized automatically by SDL (or my WM?), so no special handling is
        needed)
      - only show window after the position is set
      - do not use resizable and borderless flags at the same time, that caused
        issues in ffplay
      - add docs
      Signed-off-by: 's avatarMarton Balint <cus@passwd.hu>
      110b4a49