1. 30 7月, 2017 1 次提交
  2. 24 6月, 2017 1 次提交
    • J
      fate: update checksums for fate-lavf-ffm and fate-lavf-mxf · e5bce8b4
      James Almer 提交于
      <@jamrial> durandal_1707: 04aa09c4 broke fate-lavf-ffm and fate-lavf-mxf
      <@durandal_1707> how so?
      <@jamrial> one byte changes
      <@durandal_1707> jamrial: just update checksums
      <@jamrial> durandal_1707: but why did they change at all? the commit you reverted didn't affect them
      <@jamrial> why does reverting it affect these tests?
      <@jamrial> i don't think updating the checksum without knowing what changed is a good idea
      <@durandal_1707> jamrial: the lavfi core is in weird state after removal of recursive code
      <@durandal_1707> jamrial: the change is that older ones would get progressive flag set and new one doesnt
      <@jamrial> alright
      e5bce8b4
  3. 03 3月, 2017 1 次提交
    • A
      ffmpeg: init filtergraphs only after we have a frame on each input · af1761f7
      Anton Khirnov 提交于
      This makes sure the actual stream parameters are used, which is
      important mainly for hardware decoding+filtering cases, which would
      previously require various weird workarounds to handle the fact that a
      fake software graph has to be constructed, but never used.
      This should also improve behaviour in rare cases where
      avformat_find_stream_info() does not provide accurate information.
      
      This merges Libav commit a3a0230a. It was previously skipped.
      
      The code in flush_encoders() which sets up a "fake" format wasn't in
      Libav. I'm not sure if it's a good idea, but it tends to give
      behavior closer to the old one in certain corner cases.
      
      The vp8-size-change gives different result, because now the size of
      the first frame is used. libavformat reported the size of the largest
      frame for some reason.
      
      The exr tests now use the sample aspect ratio of the first frame. For
      some reason libavformat determines 0/1 as aspect ratio, while the
      decoder returns the correct one.
      
      The ffm and mxf tests change the field_order values. I'm assuming
      another libavformat/decoding mismatch.
      Signed-off-by: Nwm4 <nfxjfg@googlemail.com>
      af1761f7
  4. 03 12月, 2016 3 次提交
  5. 15 4月, 2016 1 次提交
    • M
      avcodec: Add bits_per_raw_sample to AVCodecParameters · 21acc4db
      Michael Niedermayer 提交于
      The bits_per_raw_sample represents the number of bits of precision per sample.
      
      The field is added at the logical place, not at the end as the code was just
      recently added
      
      This fixes the regression about losing the audio sample precision information
      
      The change in the fate test checksum un-does the change from the merge
      
      Previous version reviewed by: wm4 <nfxjfg@googlemail.com>
      Previous version reviewed by: Dominik 'Rathann' Mierzejewski <dominik@greysector.net>
      Signed-off-by: NMichael Niedermayer <michael@niedermayer.cc>
      21acc4db
  6. 01 2月, 2016 1 次提交
  7. 10 11月, 2015 1 次提交
  8. 16 11月, 2014 1 次提交
  9. 18 6月, 2014 1 次提交
    • A
      Remove avserver. · 894682a9
      Anton Khirnov 提交于
      It has not been properly maintained for years and there is little hope
      of that changing in the future.
      It appears simpler to write a new replacement from scratch than
      unbreaking it.
      894682a9
  10. 02 4月, 2014 1 次提交
  11. 07 8月, 2013 1 次提交
  12. 30 4月, 2013 1 次提交
    • A
      avconv: make -t insert trim/atrim filters. · a83c0da5
      Anton Khirnov 提交于
      This makes -t sample-accurate for audio and will allow further
      simplication in the future.
      
      Most of the FATE changes are due to audio now being sample accurate. In
      some cases a video frame was incorrectly passed with the old code, while
      its was over the limit.
      a83c0da5
  13. 05 11月, 2012 1 次提交
  14. 07 10月, 2012 1 次提交
  15. 28 9月, 2012 1 次提交
  16. 17 5月, 2012 1 次提交
    • A
      ffmpeg: add support for audio filters. · fc49f22c
      Anton Khirnov 提交于
      Some of the FATE changes are due to off-by-one different rounding being used
      (lrintf vs av_rescale_q).
      Some fate changes are due to 1 audio frame less being encoded (the new variant seems
      matching what qatar does and according to ffprobe its closer to the requested duration)
      the mapchan feature sadly is lost in this commit because it depends on resampling
      being done in ffmpeg.c which is now moved completely into the av filter layer
      -async is broken after this commit, this will be fixed in subsequent commits
      the new filter reconfiguration system is flawed and will drop a frame on each
      parameter change which is why the nelly moser checksums need updating.
      
      Conflicts:
      
      	ffmpeg.c
      	tests/ref/fate/smjpeg
      fc49f22c
  17. 21 3月, 2012 1 次提交
  18. 29 2月, 2012 1 次提交
  19. 08 2月, 2012 1 次提交
    • A
      avconv: rework -t handling for encoding. · 1270e12e
      Anton Khirnov 提交于
      Current code compares the desired recording time with InputStream.pts,
      which has a very unclear meaning. Change the code to use actual
      timestamps of the frames passed to the encoder.
      
      In several tests, one less frame is encoded, which is more correct.
      
      In the idroq test one more frame is encoded, which is again more
      correct.
      
      Behavior with stream copy should be unchanged.
      1270e12e
  20. 27 1月, 2012 1 次提交
  21. 07 9月, 2011 2 次提交
  22. 07 7月, 2011 1 次提交
  23. 26 3月, 2010 1 次提交
  24. 03 3月, 2010 1 次提交
  25. 03 2月, 2010 1 次提交
    • M
      Correct opts calulation in ffmpeg.c. · f575f08c
      Michael Niedermayer 提交于
      This correct the stop point for demuxing with -vcodec copy and -t as well as
      packet interleaving. (we already diddrop packets but kept demuxing them
      for too long due to opts being wrong)
      the change to ffm is due to 2 packets with timestamp 0 being stored
      in different order.
      
      Originally committed as revision 21626 to svn://svn.ffmpeg.org/ffmpeg/trunk
      f575f08c
  26. 17 1月, 2010 1 次提交