1. 04 Jan, 2020 1 commit
  2. 27 Dec, 2019 1 commit
  3. 14 Oct, 2019 1 commit
  4. 22 Sep, 2019 1 commit
  5. 20 Sep, 2019 2 commits
    • Soft Works's avatar
      avutil/opt: Print out numeric values of option constants · 9e0a071e
      Soft Works authored
      It's often not obvious how option constants relate to numerical values.
      Defaults are sometimes printed as numbers and from/to are always printed as numbers.
      Printing the numeric values of options constants avoids this confusion.
      It also allows to see which constants are equivalent.
      
      Before this patch:
      
        -segment_list_type <int>        E........ set the segment list type (from -1 to 4) (default -1)
           flat                         E........ flat format
           csv                          E........ csv format
           ext                          E........ extended format
           ffconcat                     E........ ffconcat format
           m3u8                         E........ M3U8 format
           hls                          E........ Apple HTTP Live Streaming compatible
      
      Afterwards:
      
        -segment_list_type <int>        E........ set the segment list type (from -1 to 4) (default -1)
           flat            0            E........ flat format
           csv             1            E........ csv format
           ext             3            E........ extended format
           ffconcat        4            E........ ffconcat format
           m3u8            2            E........ M3U8 format
           hls             2            E........ Apple HTTP Live Streaming compatible
      Signed-off-by: 's avatarsoftworkz <softworkz@hotmail.com>
      Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
      9e0a071e
    • Soft Works's avatar
      avutil/opt: Fix printing integer option defaults · 667df60b
      Soft Works authored
      Integer values should not be printed using format specifier '%g' which leads to inexact display in case of higher values.
      
      Before this patch:
        -trans_color       <int>        .D.V..... color value [...] (default 1.67772e+07)
      
      Afterwards:
        -trans_color       <int>        .D.V..... color value [...] (default 16777215)
      Signed-off-by: 's avatarsoftworkz <softworkz@hotmail.com>
      Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
      667df60b
  6. 07 Oct, 2018 1 commit
  7. 26 Apr, 2018 1 commit
  8. 16 Mar, 2018 1 commit
  9. 08 Oct, 2017 1 commit
  10. 12 Dec, 2016 1 commit
  11. 23 Nov, 2016 1 commit
  12. 20 Nov, 2016 1 commit
  13. 03 Nov, 2016 1 commit
  14. 09 Jun, 2016 1 commit
  15. 09 May, 2016 1 commit
  16. 06 May, 2016 1 commit
  17. 07 Apr, 2016 1 commit
  18. 24 Mar, 2016 3 commits
  19. 23 Mar, 2016 2 commits
  20. 26 Jan, 2016 1 commit
  21. 07 Nov, 2015 1 commit
    • Nicolas George's avatar
      lavu/opt: enhance printing durations. · 47ea04ff
      Nicolas George authored
      Trim unneeded leading components and trailing zeros.
      Move the formating code in a separate function.
      Use the function also to format the default value, it was currently
      printed as plain integer, inconsistent to the way it is parsed.
      47ea04ff
  22. 25 Oct, 2015 1 commit
    • Clément Bœsch's avatar
      avutil/opt: print more meaningful default flags values · 6b5412cb
      Clément Bœsch authored
      Example:
      % ./ffmpeg -h encoder=gif
      [...]
      GIF encoder AVOptions:
        -gifflags          <flags>      E..V.... set GIF flags (default offsetting+transdiff)
           offsetting                   E..V.... enable picture offsetting
           transdiff                    E..V.... enable transparency detection between frames
      6b5412cb
  23. 18 Oct, 2015 1 commit
  24. 09 Oct, 2015 1 commit
  25. 08 Sep, 2015 2 commits
  26. 05 Sep, 2015 3 commits
  27. 18 Aug, 2015 1 commit
  28. 03 May, 2015 1 commit
  29. 05 Mar, 2015 1 commit
  30. 01 Mar, 2015 3 commits
  31. 06 Feb, 2015 1 commit