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
      tagdemux: fix handling of very short files in push mode · a2c050a4
      Tim-Philipp Müller authored
      By default we'll wait for a certain amount of data before
      attempting typefinding. However, if the stream is fairly
      short, we might get EOS before we ever attempted any
      typefinding, so at this point we should force typefinding
      and output any pending data if we manage to detect the
      type.
      
      https://bugzilla.gnome.org//show_bug.cgi?id=768178
      a2c050a4
    • Tim-Philipp Müller's avatar
      tagdemux: fix erroring out if we reach EOS without detecting type · 130e78db
      Tim-Philipp Müller authored
      In 0.10 the source pad was a dynamic pad that was only added once
      the type had been detected, but in 1.x it's an always source pad,
      so checking whether it's still NULL won't work to detect if the
      type has been detected.
      
      Makes tagdemux error out when we get EOS but haven't managed to
      identify the format of the data after the tag.
      
      https://bugzilla.gnome.org//show_bug.cgi?id=768178
      130e78db
    • Edward Hervey's avatar
      parsebin: Fix authors and description · 4b6e43fa
      Edward Hervey authored and Edward Hervey's avatar Edward Hervey committed
      4b6e43fa
    • Edward Hervey's avatar
      playback: Remove uridecodebin3 · 5baae6df
      Edward Hervey authored and Edward Hervey's avatar Edward Hervey committed
      This was committed by mistake. The solution forward is to use the
      appropriate combination of urisourcebin and decodebin3
      5baae6df
    • Edward Hervey's avatar
      playback: New elements · d514e79b
      Edward Hervey authored and Edward Hervey's avatar Edward Hervey committed
      With contributions from Jan Schmidt <jan@centricular.com>
      
      * decodebin3 and playbin3 have the same purpose as the decodebin and
      playbin elements, except make usage of more 1.x features and the new
      GstStream API. This allows them to be more memory/cpu efficient.
      
      * parsebin is a new element that demuxers/depayloads/parses an incoming
      stream and exposes elementary streams. It is used by decodebin3.
      It also automatically creates GstStream and GstStreamCollection for
      elements that don't natively create them and sends the corresponding
      events and messages
      
      * Any application using playbin can use playbin3 by setting the env
      variable USE_PLAYBIN3=1 without reconfiguration/recompilation.
      d514e79b
  6. Jun 29, 2016
  7. Jun 27, 2016
  8. Jun 23, 2016
  9. Jun 22, 2016
    • Wim Taymans's avatar
      video-converter: fix interlaced scaling some more · 5e752f4e
      Wim Taymans authored
      Fix problem with the line cache where it would forget the first line in
      the cache in some cases.
      Keep as much backlog as we have taps. This generally works better and we
      could do even better by calculating the overlap in all taps.
      Allocated enough lines for the line cache.
      Use only half the number of taps for the interlaced lines because we
      only have half the number of lines.
      The pixel shift should be relative to the new output pixel size so scale
      it.
      Fixes: https://bugzilla.gnome.org/show_bug.cgi?id=767921
      5e752f4e
  10. Jun 21, 2016
  11. Jun 16, 2016
  12. Jun 13, 2016
    • Paulo Neves's avatar
      exiftag: Increase serialized geo precision · 5dd720e0
      Paulo Neves authored and Sebastian Dröge's avatar Sebastian Dröge committed
      The serialization of double typed geographical
      coordinates to DMS system supported by the exif
      standards was previously truncated without need.
      
      The previous code truncated the seconds part of
      the coordinate to a fraction with denominator
      equal to 1 causing a bug on the deserialization
      when the test for the coordinate to be serialized
      was more precise.
      
      This patch applies a 10E6 multiplier to the numerator
      equal to the denominator of the rational number.
      
      Eg. Latitude = 89.5688643 Serialization
      
      DMS Old code = 89/1 deg, 34/1 min, 7/1 sec
      DMS New code = 89/1 deg, 34/1 min, 79114800UL/10000000UL
      
      Deserialization
      
      DMS Old code = 89.5686111111
      DMS New code = 89.5688643
      
      The new test tries to serialize a higher precision
      coordinate.
      
      The types of the coordinates are also guint32 instead
      of gint like previously. guint32 is the type of the
      fraction components in the exif.
      
      https://bugzilla.gnome.org/show_bug.cgi?id=767537
      5dd720e0
  13. Jun 11, 2016
  14. Jun 09, 2016
    • Víctor Manuel Jáquez Leal's avatar
      videodecoder: handle buffer's flags at offset · 8b8708f9
      Víctor Manuel Jáquez Leal authored and Sebastian Dröge's avatar Sebastian Dröge committed
      For reverse playback it is important to handle correctly the frame sync
      points, which is set when the input buffer doesn't have the DELTA_UNIT flag.
      
      This is handled correctly when decoder is packetized, but when it is not the
      frame's sync point is not copied, and the reverse playback never decodes frame
      batches.
      
      The current patch adds the buffer's flags to the Timestamp list, where the
      timestamp and duration of the input buffers are hold.
      8b8708f9
Loading