issue_tracker.txt 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. FFmpeg's bug/patch/feature request tracker manual
  2. =================================================
  3. NOTE: This is a draft.
  4. Overview:
  5. ---------
  6. FFmpeg uses Trac for tracking issues, new issues and changes to
  7. existing issues can be done through a web interface.
  8. Issues can be different kinds of things we want to keep track of
  9. but that do not belong into the source tree itself. This includes
  10. bug reports, patches, feature requests and license violations. We
  11. might add more items to this list in the future, so feel free to
  12. propose a new `type of issue' on the ffmpeg-devel mailing list if
  13. you feel it is worth tracking.
  14. It is possible to subscribe to individual issues by adding yourself to the
  15. Cc list or to subscribe to the ffmpeg-trac mailing list which receives
  16. a mail for every change to every issue.
  17. (the above does all work already after light testing)
  18. The subscription URL for the ffmpeg-trac list is:
  19. http(s)://ffmpeg.org/mailman/listinfo/ffmpeg-trac
  20. The URL of the webinterface of the tracker is:
  21. http(s)://trac.ffmpeg.org
  22. Type:
  23. -----
  24. bug / defect
  25. An error, flaw, mistake, failure, or fault in FFmpeg or libav* that
  26. prevents it from behaving as intended.
  27. feature request / enhancement
  28. Request of support for encoding or decoding of a new codec, container
  29. or variant.
  30. Request of support for more, less or plain different output or behavior
  31. where the current implementation cannot be considered wrong.
  32. license violation
  33. ticket to keep track of (L)GPL violations of ffmpeg by others
  34. patch
  35. A patch as generated by diff which conforms to the patch submission and
  36. development policy.
  37. Priority:
  38. ---------
  39. critical
  40. Bugs and patches which deal with data loss and security issues.
  41. No feature request can be critical.
  42. important
  43. Bugs which make FFmpeg unusable for a significant number of users, and
  44. patches fixing them.
  45. Examples here might be completely broken MPEG-4 decoding or a build issue
  46. on Linux.
  47. While broken 4xm decoding or a broken OS/2 build would not be important,
  48. the separation to normal is somewhat fuzzy.
  49. For feature requests this priority would be used for things many people
  50. want.
  51. Regressions also should be marked as important, regressions are bugs that
  52. don't exist in a past revision or another branch.
  53. normal
  54. minor
  55. Bugs and patches about things like spelling errors, "mp2" instead of
  56. "mp3" being shown and such.
  57. Feature requests about things few people want or which do not make a big
  58. difference.
  59. wish
  60. Something that is desirable to have but that there is no urgency at
  61. all to implement, e.g. something completely cosmetic like a website
  62. restyle or a personalized doxy template or the FFmpeg logo.
  63. This priority is not valid for bugs.
  64. Status:
  65. -------
  66. new
  67. initial state
  68. open
  69. intermediate states
  70. closed
  71. final state
  72. Analyzed flag:
  73. --------------
  74. Bugs which have been analyzed and where it is understood what causes them
  75. and which exact chain of events triggers them. This analysis should be
  76. available as a message in the bug report.
  77. Note, do not change the status to analyzed without also providing a clear
  78. and understandable analysis.
  79. This state implicates that the bug either has been reproduced or that
  80. reproduction is not needed as the bug is already understood.
  81. Type/Status/Substatus:
  82. ----------
  83. */new/new
  84. Initial state of new bugs, patches and feature requests submitted by
  85. users.
  86. */open/open
  87. Issues which have been briefly looked at and which did not look outright
  88. invalid.
  89. This implicates that no real more detailed state applies yet. Conversely,
  90. the more detailed states below implicate that the issue has been briefly
  91. looked at.
  92. */closed/duplicate
  93. Bugs, patches or feature requests which are duplicates.
  94. Note that patches dealing with the same thing in a different way are not
  95. duplicates.
  96. Note, if you mark something as duplicate, do not forget setting the
  97. superseder so bug reports are properly linked.
  98. */closed/invalid
  99. Bugs caused by user errors, random ineligible or otherwise nonsense stuff.
  100. */closed/needs_more_info
  101. Issues for which some information has been requested by the developers,
  102. but which has not been provided by anyone within reasonable time.
  103. bug/closed/fixed
  104. Bugs which have to the best of our knowledge been fixed.
  105. bug/closed/wont_fix
  106. Bugs which we will not fix. Possible reasons include legality, high
  107. complexity for the sake of supporting obscure corner cases, speed loss
  108. for similarly esoteric purposes, et cetera.
  109. This also means that we would reject a patch.
  110. If we are just too lazy to fix a bug then the correct state is open
  111. and unassigned. Closed means that the case is closed which is not
  112. the case if we are just waiting for a patch.
  113. bug/closed/works_for_me
  114. Bugs for which sufficient information was provided to reproduce but
  115. reproduction failed - that is the code seems to work correctly to the
  116. best of our knowledge.
  117. patch/open/approved
  118. Patches which have been reviewed and approved by a developer.
  119. Such patches can be applied anytime by any other developer after some
  120. reasonable testing (compile + regression tests + does the patch do
  121. what the author claimed).
  122. patch/open/needs_changes
  123. Patches which have been reviewed and need changes to be accepted.
  124. patch/closed/applied
  125. Patches which have been applied.
  126. patch/closed/rejected
  127. Patches which have been rejected.
  128. feature_request/closed/implemented
  129. Feature requests which have been implemented.
  130. feature_request/closed/wont_implement
  131. Feature requests which will not be implemented. The reasons here could
  132. be legal, philosophical or others.
  133. Note, please do not use type-status-substatus combinations other than the
  134. above without asking on ffmpeg-dev first!
  135. Note2, if you provide the requested info do not forget to remove the
  136. needs_more_info substatus.
  137. Component:
  138. ----------
  139. avcodec
  140. issues in libavcodec/*
  141. avformat
  142. issues in libavformat/*
  143. avutil
  144. issues in libavutil/*
  145. regression test
  146. issues in tests/*
  147. ffmpeg
  148. issues in or related to ffmpeg.c
  149. ffplay
  150. issues in or related to ffplay.c
  151. ffprobe
  152. issues in or related to ffprobe.c
  153. ffserver
  154. issues in or related to ffserver.c
  155. build system
  156. issues in or related to configure/Makefile
  157. regression
  158. bugs which were not present in a past revision
  159. trac
  160. issues related to our issue tracker