Skip to content
Snippets Groups Projects
  1. Jul 02, 2020
  2. Jun 30, 2020
  3. Jun 26, 2020
  4. Jun 23, 2020
  5. Jun 22, 2020
  6. Jun 20, 2020
  7. Jun 19, 2020
  8. Jun 10, 2020
  9. Jun 08, 2020
  10. Jun 05, 2020
  11. Jun 03, 2020
  12. May 31, 2020
  13. May 27, 2020
  14. May 09, 2020
  15. Apr 30, 2020
  16. Apr 15, 2020
    • Haihao Xiang's avatar
      avmux: avoid to use unintialized variable · 3c643269
      Haihao Xiang authored
      Without this fix, running the command below will get an error randomly.
      
      Example:
      gst-launch-1.0 videotestsrc ! vp9enc ! avmux_ivf ! fakesink
      
      ERROR: pipeline doesn't want to preroll.
      0:00:02.388528491 30148 0x5601b424a370 ERROR                  libav :0::
      Tag [1]V[0][0] incompatible with output codec id '167' (VP90)
      3c643269
  17. Apr 01, 2020
  18. Jan 27, 2020
  19. Jan 24, 2020
  20. Jan 23, 2020
  21. Dec 19, 2019
    • Alicia Boya García's avatar
      gstavviddec: Limit default number of decoder threads · b7d450b1
      Alicia Boya García authored
      When the `max-threads` property is not specified, GStreamer defaults to
      the amount of CPU threads in the system.
      
      The number of threads used in avdec has a direct impact on the latency
      of the decoder, which is of as many frames as threads. Therefore, big
      numbers of threads can make latency levels that can be problematic in
      some applications.
      
      For this reason, ffmpeg emits a warning when more than 16 threads are
      requested.
      
      This patch limits the default number of threads to 16. This affects only
      computers with more than 16 CPU threads when using avviddec without
      setting `max-threads`.
      b7d450b1
  22. Dec 02, 2019
    • Tim-Philipp Müller's avatar
      pkgconfig: remove unused file · 77f63c24
      Tim-Philipp Müller authored
      Was never hooked up to meson build it seems, and only ever used
      by the uninstalled autotools dev env to locate gst-libav plugins
      for use in unit tests in other modules.
      77f63c24
  23. Nov 29, 2019
  24. Nov 04, 2019
  25. Oct 29, 2019
  26. Oct 25, 2019
  27. Oct 23, 2019
    • Seungha Yang's avatar
      avviddec: Enforce allocate new AVFrame per input frame · 80c8c054
      Seungha Yang authored
      ... if ffmpeg would reuse the allocated AVBuffer. Reused AVFrame by
      the ffmpeg seems to break our decoding flow since the reused AVFrame
      holds the initial opaque data (GstVideoCodecFrame in this case), so
      we couldn't trace the our in/out frames.
      To enforce get_buffer() call per output frame, hold another reference
      to the AVBuffer in order to mark the AVBuffer as not writable.
      
      Fixes: gstreamer/gst-libav#62
      80c8c054
  28. Oct 13, 2019
  29. Sep 24, 2019
  30. Sep 11, 2019
  31. Aug 13, 2019
Loading