issue_tracker.txt 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. FFmpeg's bug/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, 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)://lists.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. art
  25. Artwork such as photos, music, banners, and logos.
  26. bug / defect
  27. An error, flaw, mistake, failure, or fault in FFmpeg or libav* that
  28. prevents it from behaving as intended.
  29. feature request / enhancement
  30. Request of support for encoding or decoding of a new codec, container
  31. or variant.
  32. Request of support for more, less or plain different output or behavior
  33. where the current implementation cannot be considered wrong.
  34. license violation
  35. ticket to keep track of (L)GPL violations of ffmpeg by others
  36. sponsoring request
  37. Developer requests for hardware, software, specifications, money,
  38. refunds, etc.
  39. Priority:
  40. ---------
  41. critical
  42. Bugs about data loss and security issues.
  43. No feature request can be critical.
  44. important
  45. Bugs which make FFmpeg unusable for a significant number of users.
  46. Examples here might be completely broken MPEG-4 decoding or a build issue
  47. on Linux.
  48. While broken 4xm decoding or a broken OS/2 build would not be important,
  49. the separation to normal is somewhat fuzzy.
  50. For feature requests this priority would be used for things many people
  51. want.
  52. Regressions also should be marked as important, regressions are bugs that
  53. don't exist in a past revision or another branch.
  54. normal
  55. minor
  56. Bugs about things like spelling errors, "mp2" instead of
  57. "mp3" being shown and such.
  58. Feature requests about things few people want or which do not make a big
  59. difference.
  60. wish
  61. Something that is desirable to have but that there is no urgency at
  62. all to implement, e.g. something completely cosmetic like a website
  63. restyle or a personalized doxy template or the FFmpeg logo.
  64. This priority is not valid for bugs.
  65. Status:
  66. -------
  67. new
  68. initial state
  69. open
  70. intermediate states
  71. closed
  72. final state
  73. Analyzed flag:
  74. --------------
  75. Bugs which have been analyzed and where it is understood what causes them
  76. and which exact chain of events triggers them. This analysis should be
  77. available as a message in the bug report.
  78. Note, do not change the status to analyzed without also providing a clear
  79. and understandable analysis.
  80. This state implicates that the bug either has been reproduced or that
  81. reproduction is not needed as the bug is already understood.
  82. Type/Status:
  83. ----------
  84. */new
  85. Initial state of new bugs and feature requests submitted by
  86. users.
  87. */open
  88. Issues which have been briefly looked at and which did not look outright
  89. invalid.
  90. This implicates that no real more detailed state applies yet. Conversely,
  91. the more detailed states below implicate that the issue has been briefly
  92. looked at.
  93. */closed/duplicate
  94. Bugs or feature requests which are duplicates.
  95. Note, if you mark something as duplicate, do not forget setting the
  96. superseder so bug reports are properly linked.
  97. */closed/invalid
  98. Bugs caused by user errors, random ineligible or otherwise nonsense stuff.
  99. */closed/needs_more_info
  100. Issues for which some information has been requested by the developers,
  101. but which has not been provided by anyone within reasonable time.
  102. bug/closed/fixed
  103. Bugs which have to the best of our knowledge been fixed.
  104. bug/closed/wontfix
  105. Bugs which we will not fix. Possible reasons include legality, high
  106. complexity for the sake of supporting obscure corner cases, speed loss
  107. for similarly esoteric purposes, et cetera.
  108. This also means that we would reject a patch.
  109. If we are just too lazy to fix a bug then the correct state is open
  110. and unassigned. Closed means that the case is closed which is not
  111. the case if we are just waiting for a patch.
  112. bug/closed/works_for_me
  113. Bugs for which sufficient information was provided to reproduce but
  114. reproduction failed - that is the code seems to work correctly to the
  115. best of our knowledge.
  116. feature_request/closed/fixed
  117. Feature requests which have been implemented.
  118. feature_request/closed/wontfix
  119. Feature requests which will not be implemented. The reasons here could
  120. be legal, philosophical or others.
  121. Note2, if you provide the requested info do not forget to remove the
  122. needs_more_info resolution.
  123. Component:
  124. ----------
  125. avcodec
  126. issues in libavcodec/*
  127. avformat
  128. issues in libavformat/*
  129. avutil
  130. issues in libavutil/*
  131. regression test
  132. issues in tests/*
  133. ffmpeg
  134. issues in or related to ffmpeg.c
  135. ffplay
  136. issues in or related to ffplay.c
  137. ffprobe
  138. issues in or related to ffprobe.c
  139. ffserver
  140. issues in or related to ffserver.c
  141. build system
  142. issues in or related to configure/Makefile
  143. regression
  144. bugs which were not present in a past revision
  145. trac
  146. issues related to our issue tracker