1. 26 Feb, 2016 1 commit
  2. 19 Feb, 2016 1 commit
  3. 18 Feb, 2016 1 commit
  4. 29 Jan, 2016 1 commit
  5. 17 Jan, 2016 1 commit
  6. 08 Jan, 2016 1 commit
  7. 07 Jan, 2016 1 commit
  8. 06 Jan, 2016 1 commit
  9. 28 Dec, 2015 1 commit
  10. 17 Dec, 2015 1 commit
  11. 11 Dec, 2015 1 commit
    • Tom Marecek's avatar
      ffmpeg: change command line option -dump to work without -loglevel debug · 46cbb4c2
      Tom Marecek authored
      -hex and -dump command line options do nothing unless -loglevel debug is set.
      
      -dump by itself is useful for monitoring live streams (to get the current PTS for example)  however when it is used with -loglevel debug for an RTMP stream, librtmp also dumps the packet data which makes the output too noisy.
      
      do_pkt_dump is only set in check_keyboard_interaction or by the -dump command line option so this change should have no effect on any other parts of the code..
      Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
      46cbb4c2
  12. 05 Dec, 2015 1 commit
  13. 04 Dec, 2015 2 commits
  14. 20 Nov, 2015 2 commits
  15. 16 Nov, 2015 2 commits
  16. 11 Nov, 2015 3 commits
  17. 09 Nov, 2015 1 commit
  18. 03 Nov, 2015 1 commit
  19. 29 Oct, 2015 1 commit
  20. 27 Oct, 2015 1 commit
  21. 22 Oct, 2015 5 commits
  22. 14 Oct, 2015 2 commits
  23. 11 Oct, 2015 1 commit
  24. 09 Oct, 2015 1 commit
    • Ganesh Ajjanagadde's avatar
      ffmpeg: avoid possible undefined behavior · 2f4374fa
      Ganesh Ajjanagadde authored
      On lines 1633,1634 FFABS(pts) is performed. However, if av_stream_get_end_pts
      returns AV_NOPTS_VALUE always, pts remains stuck at INT64_MIN, leading
      to undefined behavior on FFABS.
      
      One could conceive of a solution using FFNABS. However, such a solution
      has to deal with the implementation defined rounding of integer division
      with at least one negative operand in ANSI C89. C99 forces truncation to
      zero, but I am not sure that all of our platforms compile with full C99
      support, and in particular whether we can safely assume a fixed
      rounding behavior across all platforms.
      
      This solution is simple, and I doubt changing INT64_MIN to INT64_MIN + 1
      has any practical loss - if it is stuck at its initial value, the stream
      is messed up anyway.
      Signed-off-by: 's avatarGanesh Ajjanagadde <gajjanagadde@gmail.com>
      Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
      2f4374fa
  25. 05 Sep, 2015 2 commits
  26. 04 Sep, 2015 1 commit
  27. 28 Aug, 2015 1 commit
  28. 22 Aug, 2015 1 commit
  29. 21 Aug, 2015 1 commit