1. 01 Aug, 2024 1 commit
  2. 24 Jul, 2024 1 commit
  3. 14 Apr, 2024 1 commit
  4. 30 Dec, 2023 1 commit
  5. 29 Dec, 2023 2 commits
  6. 29 Oct, 2023 1 commit
  7. 20 Oct, 2023 2 commits
    • Stefano Sabatini's avatar
      ffprobe: add -output_format as an alias of -of · 7bf41440
      Stefano Sabatini authored
      Currently we have -of and -print_format, which is a bit confusing. Add
      -output_format as an alias of -of to match the short name.
      7bf41440
    • Stefano Sabatini's avatar
      ffprobe: fix XML rendering, review XML layout · 2b0973de
      Stefano Sabatini authored
      Fix rendering of int values within a side data element, which was
      broken since commit d2d3a83a, where the side data element was
      correctly marked as a variable fields element. Logic to render a
      string variable was implemented already, but it was not implemented
      for the int fields path, which was enabled by that commit.
      
      Also, code and schema is changed in order to account for multiple
      variable-fields elements - such as side data, contained within the
      same parent. Previously it was assumed that a single variable-fields
      element was contained within the parent, which was the case for tags,
      but is not the case for side-data.
      
      Previously data was rendered as:
      <side_data_list>
          <side_data side_data_type="CPB properties" max_bitrate="0" min_bitrate="0" avg_bitrate="0" buffer_size="327680" vbv_delay="-1"/>
      </side_data_list>
      
      Now as:
      <side_data_list>
         <side_data type="CPB properties">
             <side_datum key="side_data_type" value="CPB properties"/>
             <side_datum key="max_bitrate" value="0"/>
             <side_datum key="min_bitrate" value="0"/>
             <side_datum key="avg_bitrate" value="0"/>
             <side_datum key="buffer_size" value="49152"/>
             <side_datum key="vbv_delay" value="-1"/>
         </side_data>
      </side_data_list>
      
      Variable-fields elements are rendered as a containing element wrapping
      generic key/values elements, enabling use of strict XML schema.
      
      Fix trac issue:
      https://trac.ffmpeg.org/ticket/10613
      2b0973de
  8. 22 Sep, 2023 1 commit
  9. 18 Sep, 2023 1 commit
    • Anton Khirnov's avatar
      fftools/ffmpeg: deprecate the -top option · 5d58a35f
      Anton Khirnov authored
      It is badly named (should have been -top_field_first, or at least -tff),
      underdocumented and underspecified, and (most importantly) entirely
      redundant with the setfield filter.
      5d58a35f
  10. 17 Sep, 2023 1 commit
  11. 05 Sep, 2023 1 commit
  12. 01 Sep, 2023 1 commit
  13. 14 Aug, 2023 2 commits
  14. 08 Aug, 2023 1 commit
  15. 23 Jul, 2023 2 commits
  16. 29 Jun, 2023 5 commits
  17. 20 Jun, 2023 2 commits
  18. 16 Jun, 2023 1 commit
    • Philip Langdale's avatar
      avfilter/vf_bwdif_cuda: CUDA accelerated bwdif deinterlacer · 73a2252f
      Philip Langdale authored
      I've been sitting on this for 3 1/2 years now(!), and I finally got
      around to fixing the loose ends and convincing myself that it was
      correct. It follows the same basic structure as yadif_cuda, including
      leaving out the edge handling, to avoid expensive branching.
      73a2252f
  19. 15 Jun, 2023 1 commit
  20. 12 Jun, 2023 1 commit
  21. 07 Jun, 2023 2 commits
  22. 28 May, 2023 1 commit
  23. 14 May, 2023 1 commit
  24. 09 May, 2023 1 commit
  25. 07 May, 2023 1 commit
  26. 30 Apr, 2023 1 commit
  27. 27 Apr, 2023 1 commit
  28. 24 Apr, 2023 1 commit
  29. 20 Apr, 2023 2 commits