issue_tracker.txt 6.0 KB

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