Skip to content
Snippets Groups Projects
  1. Jul 06, 2016
  2. Jul 05, 2016
  3. Jul 04, 2016
  4. Jul 01, 2016
  5. Jun 30, 2016
    • Tim-Philipp Müller's avatar
      3623f168
    • Tim-Philipp Müller's avatar
    • Edward Hervey's avatar
      multiqueue: Add a pad property to "group" streams · f4ba43b1
      Edward Hervey authored
      When syncing by running time, multiqueue will throttle unlinked streams
      based on a global "high-time" and the pending "next_time" of a stream.
      
      The idea is that we don't want unlinked streams to be "behind" the global
      running time of linked streams, so that if/when they get linked (like when
      switching tracks) decoding/playback can resume from the same position as
      the other streams.
      
      The problem is that it assumes elements downstream will have a more or less
      equal buffering/latency ... which isn't the case for streams of different
      type. Video decoders tend to have higher latency (and therefore consume more
      from upstream to output a given decoded frame) compared to audio ones, resulting
      in the computed "high_time" being at the position of the video stream,
      much further than the audio streams.
      
      This means the unlinked audio streams end up being quite a bit after the linked
      audio streams, resulting in gaps when switching streams.
      
      In order to mitigate this issue, this patch adds a new "group-id" pad property
      which allows users to "group" streams together. Calculating the high-time will
      now be done not only globally, but also per group. This ensures that within
      a given group unlinked streams will be throttled by that group's high-time
      instead.
      
      This fixes gaps when switching downstream elements (like switching audio tracks).
      f4ba43b1
    • Edward Hervey's avatar
      gst: New Stream listing/selection system · 63f6f05d
      Edward Hervey authored
      * GstStream
      * GstStreamCollection
      * GST_EVENT_SELECT_STREAMS
      * GST_MESSAGE_STREAM_COLLECTION
      63f6f05d
  6. Jun 29, 2016
  7. Jun 28, 2016
  8. Jun 24, 2016
  9. Jun 23, 2016
    • Nirbheek Chauhan's avatar
      win32: Don't use dllexport/import when only building statically · 48088867
      Nirbheek Chauhan authored
      If the prototypes in the public API have dllimport in them when building
      statically on Windows, the compiler will look for symbols with symbol
      mangling and indirection corresponding to a DLL. This will cause a build
      failure when trying to link tests/examples/etc.
      
      External users of GStreamer also need to define -DGST_STATIC_COMPILATION
      if they want to link to static gstreamer libraries on Windows.
      
      A similar version of this patch has been committed to all gstreamer
      repositories.
      
      https://bugzilla.gnome.org/show_bug.cgi?id=767463
      48088867
  10. Jun 21, 2016
  11. Jun 20, 2016
  12. Jun 17, 2016
  13. Jun 16, 2016
  14. Jun 15, 2016
  15. Jun 14, 2016
  16. Jun 13, 2016
    • Sebastian Dröge's avatar
      basesink: Update start time when losing state only if we were in PLAYING · b9a4a2a9
      Sebastian Dröge authored
      If we were in PAUSED, the current clock time and base time don't have much to
      do with the running time anymore as the clock might have advanced while we
      were PAUSED. The system clock does that for example, audio clocks often don't.
      
      Updating the start time in PAUSED will cause a) the wrong position to be
      reported, b) step events to step not just the requested amount but the amount
      of time we spent in PAUSED. The start time should only ever be updated when
      going from PLAYING to PAUSED to remember the current running time (to be able
      to compensate later when going to PLAYING for the clock time advancing while
      PAUSED), not when we are already in PAUSED.
      
      Based on a patch by Kishore Arepalli <kishore.arepalli@gmail.com>
      
      The updating of the start time when the state is lost was added in commit
      ba943a82 to fix the position reporting when
      the state is lost. This still works correctly after this change.
      
      https://bugzilla.gnome.org/show_bug.cgi?id=739289
      b9a4a2a9
  17. Jun 11, 2016
  18. Jun 10, 2016
  19. Jun 09, 2016
  20. Jun 08, 2016
  21. Jun 07, 2016
Loading