libav-merge.txt 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. CONTEXT
  2. =======
  3. The FFmpeg project merges all the changes from the Libav project
  4. (https://libav.org) since the origin of the fork (around 2011).
  5. With the exceptions of some commits due to technical/political disagreements or
  6. issues, the changes are merged on a more or less regular schedule (daily for
  7. years thanks to Michael, but more sparse nowadays).
  8. WHY
  9. ===
  10. The majority of the active developers believe the project needs to keep this
  11. policy for various reasons.
  12. The most important one is that we don't want our users to have to choose
  13. between two distributors of libraries of the exact same name in order to have a
  14. different set of features and bugfixes. By taking the responsibility of
  15. unifying the two codebases, we allow users to benefit from the changes from the
  16. two teams.
  17. Today, FFmpeg has a much larger user database (we are distributed by every
  18. major distribution), so we consider this mission a priority.
  19. A different approach to the merge could have been to pick the changes we are
  20. interested in and drop most of the cosmetics and other less important changes.
  21. Unfortunately, this makes the following picks much harder, especially since the
  22. Libav project is involved in various deep API changes. As a result, we decide
  23. to virtually take everything done there.
  24. Any Libav developer is of course welcome anytime to contribute directly to the
  25. FFmpeg tree. Of course, we fully understand and are forced to accept that very
  26. few Libav developers are interested in doing so, but we still want to recognize
  27. their work. This leads us to create merge commits for every single one from
  28. Libav. The original commit appears totally unchanged with full authorship in
  29. our history (and the conflict are solved in the merge one). That way, not a
  30. single thing from Libav will be lost in the future in case some reunification
  31. happens, or that project disappears one way or another.
  32. DOWNSIDES
  33. =========
  34. Of course, there are many downsides to this approach.
  35. - It causes a non negligible merge commits pollution. We make sure there are
  36. not several level of merges entangled (we do a 1:1 merge/commit), but it's
  37. still a non-linear history.
  38. - Many duplicated work. For instance, we added libavresample in our tree to
  39. keep compatibility with Libav when our libswresample was already covering the
  40. exact same purpose. The same thing happened for various elements such as the
  41. ProRes support (but differences in features, bugs, licenses, ...). There are
  42. many work to do to unify them, and any help is very much welcome.
  43. - So much manpower from both FFmpeg and Libav is lost because of this mess. We
  44. know it, and we don't know how to fix it. It takes incredible time to do
  45. these merges, so we have even less time to work on things we personally care
  46. about. The bad vibes also do not help with keeping our developers motivated.
  47. - There is a growing technical risk factor with the merges due to the codebase
  48. differing more and more.
  49. MERGE GUIDELINES
  50. ================
  51. The following gives developer guidelines on how to proceed when merging Libav commits.
  52. Before starting, you can reduce the risk of errors on merge conflicts by using
  53. a different merge conflict style:
  54. $ git config --global merge.conflictstyle diff3
  55. tools/libav-merge-next-commit is a script to help merging the next commit in
  56. the queue. It assumes a remote named libav. It has two modes: merge, and noop.
  57. The noop mode creates a merge with no change to the HEAD. You can pass a hash
  58. as extra argument to reference a justification (it is common that we already
  59. have the change done in FFmpeg).
  60. Also see tools/murge, you can copy and paste a 3 way conflict into its stdin
  61. and it will display colored diffs. Any arguments to murge (like ones to suppress
  62. whitespace differences) are passed into colordiff.
  63. TODO/FIXME/UNMERGED
  64. ===================
  65. Stuff that didn't reach the codebase:
  66. -------------------------------------
  67. - HEVC DSP and x86 MC SIMD improvements from Libav (see https://ffmpeg.org/pipermail/ffmpeg-devel/2015-December/184777.html)
  68. - 1f821750f hevcdsp: split the qpel functions by width instead of by the subpixel fraction
  69. - 818bfe7f0 hevcdsp: split the epel functions by width
  70. - 688417399 hevcdsp: split the pred functions by width
  71. - a853388d2 hevc: change the stride of the MC buffer to be in bytes instead of elements
  72. - 0cef06df0 checkasm: add HEVC MC tests
  73. - e7078e842 hevcdsp: add x86 SIMD for MC
  74. - 7993ec19a hevc: Add hevc_get_pixel_4/8/12/16/24/32/48/64
  75. - use av_cpu_max_align() instead of hardcoding alignment requirements (see https://ffmpeg.org/pipermail/ffmpeg-devel/2017-September/215834.html)
  76. - f44ec22e0 lavc: use av_cpu_max_align() instead of hardcoding alignment requirements
  77. - 4de220d2e frame: allow align=0 (meaning automatic) for av_frame_get_buffer()
  78. - Support recovery from an already present HLS playlist (see 16cb06bb30)
  79. - Remove all output devices (see 8e7e042d41, 8d3db95f20, 6ce13070bd, d46cd24986 and https://ffmpeg.org/pipermail/ffmpeg-devel/2017-September/216904.html)
  80. - avcodec/libaomenc: export the Sequence Header OBU as extradata (See a024c3ce9a)
  81. Collateral damage that needs work locally:
  82. ------------------------------------------
  83. - Merge proresenc_anatoliy.c and proresenc_kostya.c
  84. - Fix MIPS AC3 downmix
  85. Extra changes needed to be aligned with Libav:
  86. ----------------------------------------------
  87. - Switching our examples to the new encode/decode API (see 67d28f4a0f)
  88. - HEVC IDCT bit depth 12-bit support (Libav added 8 and 10 but doesn't have 12)