1. 08 May, 2018 2 commits
  2. 03 May, 2018 1 commit
  3. 25 Apr, 2018 1 commit
  4. 29 Mar, 2018 1 commit
  5. 13 Mar, 2018 1 commit
  6. 10 Mar, 2018 1 commit
  7. 07 Jan, 2018 1 commit
  8. 03 Dec, 2017 1 commit
    • Marton Balint's avatar
      avformat/mxfdec: fix last packet timestamps · 5a93a85f
      Marton Balint authored
      The current edit unit cannot be reliably determined for the last packet of a
      video stream, because we can't query the start offset of the next edit unit
      from the index. This caused missing timestamps for the last video packet.
      
      Therefore from now on, we allow setting the PTS even if we are not sure of the
      current edit unit if mxf_set_current_edit_unit returned a specific failure, and
      the assumed current edit unit is the last.
      
      Fixes last packet timestamp of:
      ffprobe -fflags nofillin -show_packets tests/data/lavf/lavf.mxf -select_streams v
      Signed-off-by: 's avatarMarton Balint <cus@passwd.hu>
      5a93a85f
  9. 30 Oct, 2017 1 commit
  10. 18 Sep, 2017 1 commit
  11. 24 Aug, 2017 1 commit
    • Dale Curtis's avatar
      avformat/mov: Fix trampling of ctts during seeks when sidx support is enabled. · 37e8edc9
      Dale Curtis authored
      When sidx box support is enabled, the code will skip reading all
      trun boxes (each containing ctts entries for samples inthat box).
      
      If seeks are attempted before all ctts values are known, the old
      code would dump ctts entries into the wrong location. These are
      then used to compute pts values which leads to out of order and
      incorrectly timestamped packets.
      
      This patch fixes ctts processing by always using the index returned
      by av_add_index_entry() as the ctts_data index. When the index gains
      new entries old values are reshuffled as appropriate.
      
      This approach makes sense since the mov demuxer is already relying
      on the mapping of AVIndex entries to samples for correct demuxing.
      
      As a result of this all ctts entries are now 1-count. A followup
      change will be submitted to remove support for > 1 count entries
      which will simplify seeking.
      
      Notes for future improvement:
      Probably there are other boxes (stts, stsc, etc) that are impacted
      by this issue... this patch only attempts to fix ctts since it
      completely breaks packet timestamping.
      
      This patch continues using an array for the ctts data, which is not
      the most ideal given the rearrangement that needs to happen (via
      memmove as new entries are read in). Ideally AVIndex and the ctts
      data would be set-type structures so addition is always worst case
      O(lg(n)) instead of the O(n^2) that exists now; this slowdown is
      noticeable during seeks.
      Signed-off-by: 's avatarDale Curtis <dalecurtis@chromium.org>
      Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
      37e8edc9
  12. 08 Apr, 2017 1 commit
  13. 14 Mar, 2017 1 commit
    • wm4's avatar
      ffmpeg, ffprobe: don't "merge" side data into packet data by default · 55eab173
      wm4 authored
      Preparation for potentially disabling merged side data by default in the
      libs. Do this in particular because it affects fate tests.
      
      The changed tests either reflect added packet side data, or the changed
      packet size due to merged side data removal reducing the packet size.
      55eab173
  14. 22 Feb, 2017 1 commit
  15. 26 Oct, 2016 1 commit
  16. 15 Oct, 2016 1 commit
  17. 06 Oct, 2016 5 commits
  18. 29 Jul, 2016 1 commit
  19. 24 Jul, 2016 1 commit
  20. 29 Jun, 2016 1 commit
  21. 22 Jun, 2016 1 commit
  22. 03 Jun, 2016 1 commit
  23. 03 Apr, 2016 1 commit
  24. 03 Mar, 2016 1 commit
  25. 02 Mar, 2016 1 commit
  26. 23 Feb, 2016 1 commit
    • Stefano Sabatini's avatar
      lavc/lavf: transmit stream_id information for mpegts KLV data packets · 14f7a3d5
      Stefano Sabatini authored
      This allows to copy information related to the stream ID from the demuxer
      to the muxer, thus allowing for example to retain information related to
      synchronous and asynchronous KLV data packets. This information is used
      in the muxer when remuxing to distinguish the two kind of packets (if the
      information is lacking, data packets are considered synchronous).
      
      The fate reference changes are due to the use of
      av_packet_merge_side_data(), which increases the size of the output
      packet size, since side data is merged into the packet data.
      14f7a3d5
  27. 24 Nov, 2015 1 commit
  28. 10 Nov, 2015 1 commit
  29. 05 Aug, 2015 1 commit
  30. 16 Jul, 2015 1 commit
  31. 11 Jul, 2015 1 commit
  32. 28 Jun, 2015 1 commit
    • Alexandra Hájková's avatar
      lavf: Replace the ASF demuxer · b08569a2
      Alexandra Hájková authored
      The old one is the result of the reverse engineering and guesswork.
      The new one has been written following the now-available specification.
      
      This work is part of Outreach Program for Women Summer 2014 activities
      for the Libav project.
      
      The fate references had to be changed because the old demuxer truncates
      the last frame in some cases, the new one handles it properly.
      The seek-test reference is changed because seeking works differently
      in the new demuxer. When seeking, the packet is not read from the stream
      directly, but it is rather constructed by the demuxer. That is why
      position is -1 now in the reference.
      Signed-off-by: 's avatarAnton Khirnov <anton@khirnov.net>
      b08569a2
  33. 22 May, 2015 1 commit
  34. 10 May, 2015 1 commit
  35. 23 Apr, 2015 1 commit