You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

406 lines
16KB

  1. \input texinfo @c -*- texinfo -*-
  2. @settitle Developer Documentation
  3. @titlepage
  4. @center @titlefont{Developer Documentation}
  5. @end titlepage
  6. @top
  7. @contents
  8. @chapter Developers Guide
  9. @section API
  10. @itemize @bullet
  11. @item libavcodec is the library containing the codecs (both encoding and
  12. decoding). Look at @file{libavcodec/apiexample.c} to see how to use it.
  13. @item libavformat is the library containing the file format handling (mux and
  14. demux code for several formats). Look at @file{ffplay.c} to use it in a
  15. player. See @file{libavformat/output-example.c} to use it to generate
  16. audio or video streams.
  17. @end itemize
  18. @section Integrating libav in your program
  19. Shared libraries should be used whenever is possible in order to reduce
  20. the effort distributors have to pour to support programs and to ensure
  21. only the public api is used.
  22. You can use Libav in your commercial program, but you must abide to the
  23. license, LGPL or GPL depending on the specific features used, please refer
  24. to @url{http://libav.org/legal.html} for a quick checklist and to
  25. @url{http://git.libav.org/?p=libav.git;a=blob;f=COPYING.GPLv2},
  26. @url{http://git.libav.org/?p=libav.git;a=blob;f=COPYING.GPLv3},
  27. @url{http://git.libav.org/?p=libav.git;a=blob;f=COPYING.LGPLv2.1},
  28. @url{http://git.libav.org/?p=libav.git;a=blob;f=COPYING.LGPLv3} for the
  29. exact text of the licenses.
  30. Any modification to the source code can be suggested for inclusion.
  31. The best way to proceed is to send your patches to the Libav mailing list.
  32. @anchor{Coding Rules}
  33. @section Coding Rules
  34. Libav is programmed in the ISO C90 language with a few additional
  35. features from ISO C99, namely:
  36. @itemize @bullet
  37. @item
  38. the @samp{inline} keyword;
  39. @item
  40. @samp{//} comments;
  41. @item
  42. designated struct initializers (@samp{struct s x = @{ .i = 17 @};})
  43. @item
  44. compound literals (@samp{x = (struct s) @{ 17, 23 @};})
  45. @end itemize
  46. These features are supported by all compilers we care about, so we will not
  47. accept patches to remove their use unless they absolutely do not impair
  48. clarity and performance.
  49. All code must compile with recent versions of GCC and a number of other
  50. currently supported compilers. To ensure compatibility, please do not use
  51. additional C99 features or GCC extensions. Especially watch out for:
  52. @itemize @bullet
  53. @item
  54. mixing statements and declarations;
  55. @item
  56. @samp{long long} (use @samp{int64_t} instead);
  57. @item
  58. @samp{__attribute__} not protected by @samp{#ifdef __GNUC__} or similar;
  59. @item
  60. GCC statement expressions (@samp{(x = (@{ int y = 4; y; @})}).
  61. @end itemize
  62. Indent size is 4.
  63. The presentation is one inspired by 'indent -i4 -kr -nut'.
  64. The TAB character is forbidden outside of Makefiles as is any
  65. form of trailing whitespace. Commits containing either will be
  66. rejected by the git repository.
  67. The main priority in Libav is simplicity and small code size in order to
  68. minimize the bug count.
  69. Comments: Use the JavaDoc/Doxygen
  70. format (see examples below) so that code documentation
  71. can be generated automatically. All nontrivial functions should have a comment
  72. above them explaining what the function does, even if it is just one sentence.
  73. All structures and their member variables should be documented, too.
  74. @example
  75. /**
  76. * @@file mpeg.c
  77. * MPEG codec.
  78. * @@author ...
  79. */
  80. /**
  81. * Summary sentence.
  82. * more text ...
  83. * ...
  84. */
  85. typedef struct Foobar@{
  86. int var1; /**< var1 description */
  87. int var2; ///< var2 description
  88. /** var3 description */
  89. int var3;
  90. @} Foobar;
  91. /**
  92. * Summary sentence.
  93. * more text ...
  94. * ...
  95. * @@param my_parameter description of my_parameter
  96. * @@return return value description
  97. */
  98. int myfunc(int my_parameter)
  99. ...
  100. @end example
  101. fprintf and printf are forbidden in libavformat and libavcodec,
  102. please use av_log() instead.
  103. Casts should be used only when necessary. Unneeded parentheses
  104. should also be avoided if they don't make the code easier to understand.
  105. @section Development Policy
  106. @enumerate
  107. @item
  108. Contributions should be licensed under the LGPL 2.1, including an
  109. "or any later version" clause, or the MIT license. GPL 2 including
  110. an "or any later version" clause is also acceptable, but LGPL is
  111. preferred.
  112. @item
  113. All the patches MUST be reviewed in the mailing list before they are
  114. committed.
  115. @item
  116. The Libav coding style should remain consistent. Changes to
  117. conform will be suggested during the review or implemented on commit.
  118. @item
  119. Patches should be generated using @code{git format-patch} or directly sent
  120. using @code{git send-email}.
  121. Please make sure you give the proper credit by setting the correct author
  122. in the commit.
  123. @item
  124. The commit message should have a short first line in the form of
  125. @samp{topic: short description} as header, separated by a newline
  126. from the body consting in few lines explaining the reason of the patch.
  127. Referring to the issue on the bug tracker does not exempt to report an
  128. excerpt of the bug.
  129. @item
  130. Work in progress patches should be sent to the mailing list with the [WIP]
  131. or the [RFC] tag.
  132. @item
  133. Branches in public personal repos are advised as way to
  134. work on issues collaboratively.
  135. @item
  136. You do not have to over-test things. If it works for you and you think it
  137. should work for others, send it to the mailing list for review.
  138. If you have doubt about portability please state it in the submission so
  139. people with specific hardware could test it.
  140. @item
  141. Do not commit unrelated changes together, split them into self-contained
  142. pieces. Also do not forget that if part B depends on part A, but A does not
  143. depend on B, then A can and should be committed first and separate from B.
  144. Keeping changes well split into self-contained parts makes reviewing and
  145. understanding them on the commit log mailing list easier. This also helps
  146. in case of debugging later on.
  147. @item
  148. Patches that change behavior of the programs (renaming options etc) or
  149. public API or ABI should be discussed in depth and possible few days should
  150. pass between discussion and commit.
  151. Changes to the build system (Makefiles, configure script) which alter
  152. the expected behavior should be considered in the same regard.
  153. @item
  154. When applying patches that have been discussed (at length) on the mailing
  155. list, reference the thread in the log message.
  156. @item
  157. Subscribe to the libav-devel and libav-commits mailing list.
  158. Bugs and possible improvements or general questions regarding commits
  159. are discussed on libav-devel. We expect you to react if problems with
  160. your code are uncovered.
  161. @item
  162. Update the documentation if you change behavior or add features. If you are
  163. unsure how best to do this, send an [RFC] patch to libav-devel.
  164. @item
  165. All discussions and decisions should be reported on the public developer
  166. mailing list, so that there is a reference to them.
  167. Other media (e.g. IRC) should be used for coordination and immediate
  168. collaboration.
  169. @item
  170. Never write to unallocated memory, never write over the end of arrays,
  171. always check values read from some untrusted source before using them
  172. as array index or other risky things. Always use valgrind to doublecheck.
  173. @item
  174. Remember to check if you need to bump versions for the specific libav
  175. parts (libavutil, libavcodec, libavformat) you are changing. You need
  176. to change the version integer.
  177. Incrementing the first component means no backward compatibility to
  178. previous versions (e.g. removal of a function from the public API).
  179. Incrementing the second component means backward compatible change
  180. (e.g. addition of a function to the public API or extension of an
  181. existing data structure).
  182. Incrementing the third component means a noteworthy binary compatible
  183. change (e.g. encoder bug fix that matters for the decoder).
  184. @item
  185. Compiler warnings indicate potential bugs or code with bad style.
  186. If it is a bug, the bug has to be fixed. If it is not, the code should
  187. be changed to not generate a warning unless that causes a slowdown
  188. or obfuscates the code.
  189. If a type of warning leads to too many false positives, that warning
  190. should be disabled, not the code changed.
  191. @item
  192. If you add a new file, give it a proper license header. Do not copy and
  193. paste it from a random place, use an existing file as template.
  194. @end enumerate
  195. We think our rules are not too hard. If you have comments, contact us.
  196. Note, some rules were borrowed from the MPlayer project.
  197. @section Submitting patches
  198. First, read the @ref{Coding Rules} above if you did not yet, in particular
  199. the rules regarding patch submission.
  200. As stated already, please do not submit a patch which contains several
  201. unrelated changes.
  202. Split it into separate, self-contained pieces. This does not mean splitting
  203. file by file. Instead, make the patch as small as possible while still
  204. keeping it as a logical unit that contains an individual change, even
  205. if it spans multiple files. This makes reviewing your patches much easier
  206. for us and greatly increases your chances of getting your patch applied.
  207. Use the patcheck tool of Libav to check your patch.
  208. The tool is located in the tools directory.
  209. Run the @ref{Regression Tests} before submitting a patch in order to verify
  210. it does not cause unexpected problems.
  211. Patches should be posted as base64 encoded attachments (or any other
  212. encoding which ensures that the patch will not be trashed during
  213. transmission) to the libav-devel mailing list, see
  214. @url{https://lists.libav.org/mailman/listinfo/libav-devel}
  215. It also helps quite a bit if you tell us what the patch does (for example
  216. 'replaces lrint by lrintf'), and why (for example '*BSD isn't C99 compliant
  217. and has no lrint()'). This kind of explanation should be the body of the
  218. commit message.
  219. Also please if you send several patches, send each patch as a separate mail,
  220. do not attach several unrelated patches to the same mail.
  221. Use @code{git send-email} when possible since it will properly send patches
  222. without requiring extra care.
  223. Your patch will be reviewed on the mailing list. You will likely be asked
  224. to make some changes and are expected to send in an improved version that
  225. incorporates the requests from the review. This process may go through
  226. several iterations. Once your patch is deemed good enough, it will be
  227. committed to the official Libav tree.
  228. Give us a few days to react. But if some time passes without reaction,
  229. send a reminder by email. Your patch should eventually be dealt with.
  230. @section New codecs or formats checklist
  231. @enumerate
  232. @item
  233. Did you use av_cold for codec initialization and close functions?
  234. @item
  235. Did you add a long_name under NULL_IF_CONFIG_SMALL to the AVCodec or
  236. AVInputFormat/AVOutputFormat struct?
  237. @item
  238. Did you bump the minor version number (and reset the micro version
  239. number) in @file{avcodec.h} or @file{avformat.h}?
  240. @item
  241. Did you register it in @file{allcodecs.c} or @file{allformats.c}?
  242. @item
  243. Did you add the CodecID to @file{avcodec.h}?
  244. @item
  245. If it has a fourcc, did you add it to @file{libavformat/riff.c},
  246. even if it is only a decoder?
  247. @item
  248. Did you add a rule to compile the appropriate files in the Makefile?
  249. Remember to do this even if you are just adding a format to a file that
  250. is already being compiled by some other rule, like a raw demuxer.
  251. @item
  252. Did you add an entry to the table of supported formats or codecs in
  253. @file{doc/general.texi}?
  254. @item
  255. Did you add an entry in the Changelog?
  256. @item
  257. If it depends on a parser or a library, did you add that dependency in
  258. configure?
  259. @item
  260. Did you @code{git add} the appropriate files before committing?
  261. @item
  262. Did you make sure it compiles standalone, i.e. with
  263. @code{configure --disable-everything --enable-decoder=foo}
  264. (or @code{--enable-demuxer} or whatever your component is)?
  265. @end enumerate
  266. @section patch submission checklist
  267. @enumerate
  268. @item
  269. Do the regression tests pass with the patch applied?
  270. @item
  271. Does @code{make checkheaders} pass with the patch applied?
  272. @item
  273. Is the patch against latest Libav git master branch?
  274. @item
  275. Are you subscribed to libav-devel?
  276. (@url{https://lists.libav.org/mailman/listinfo/libav-devel}
  277. the list is subscribers)
  278. @item
  279. Have you checked that the changes are minimal, so that the same cannot be
  280. achieved with a smaller patch and/or simpler final code?
  281. @item
  282. If the change is to speed critical code, did you benchmark it?
  283. @item
  284. If you did any benchmarks, did you provide them in the mail?
  285. @item
  286. Have you checked that the patch does not introduce buffer overflows or
  287. other security issues?
  288. @item
  289. Did you test your decoder or demuxer against damaged data? If no, see
  290. tools/trasher and the noise bitstream filter. Your decoder or demuxer
  291. should not crash or end in a (near) infinite loop when fed damaged data.
  292. @item
  293. Does the patch not mix functional and cosmetic changes?
  294. @item
  295. Did you add tabs or trailing whitespace to the code? Both are forbidden.
  296. @item
  297. Is the patch attached to the email you send?
  298. @item
  299. Is the mime type of the patch correct? It should be text/x-diff or
  300. text/x-patch or at least text/plain and not application/octet-stream.
  301. @item
  302. If the patch fixes a bug, did you provide a verbose analysis of the bug?
  303. @item
  304. If the patch fixes a bug, did you provide enough information, including
  305. a sample, so the bug can be reproduced and the fix can be verified?
  306. Note please do not attach samples >100k to mails but rather provide a
  307. URL, you can upload to ftp://upload.libav.org
  308. @item
  309. Did you provide a verbose summary about what the patch does change?
  310. @item
  311. Did you provide a verbose explanation why it changes things like it does?
  312. @item
  313. Did you provide a verbose summary of the user visible advantages and
  314. disadvantages if the patch is applied?
  315. @item
  316. Did you provide an example so we can verify the new feature added by the
  317. patch easily?
  318. @item
  319. If you added a new file, did you insert a license header? It should be
  320. taken from Libav, not randomly copied and pasted from somewhere else.
  321. @item
  322. You should maintain alphabetical order in alphabetically ordered lists as
  323. long as doing so does not break API/ABI compatibility.
  324. @item
  325. Lines with similar content should be aligned vertically when doing so
  326. improves readability.
  327. @end enumerate
  328. @section Patch review process
  329. All patches posted to libav-devel will be reviewed, unless they contain a
  330. clear note that the patch is not for the git master branch.
  331. Reviews and comments will be posted as replies to the patch on the
  332. mailing list. The patch submitter then has to take care of every comment,
  333. that can be by resubmitting a changed patch or by discussion. Resubmitted
  334. patches will themselves be reviewed like any other patch. If at some point
  335. a patch passes review with no comments then it is approved, that can for
  336. simple and small patches happen immediately while large patches will generally
  337. have to be changed and reviewed many times before they are approved.
  338. After a patch is approved it will be committed to the repository.
  339. We will review all submitted patches, but sometimes we are quite busy so
  340. especially for large patches this can take several weeks.
  341. When resubmitting patches, if their size grew or during the review different
  342. issues arisen please split the patch so each issue has a specific patch.
  343. @anchor{Regression Tests}
  344. @section Regression Tests
  345. Before submitting a patch (or committing to the repository), you should at
  346. least make sure that it does not break anything.
  347. If the code changed has already a test present in FATE you should run it,
  348. otherwise it is advised to add it.
  349. Improvements to codec or demuxer might change the FATE results. Make sure
  350. to commit the update reference with the change and to explain in the comment
  351. why the expected result changed.
  352. Please refer to @file{doc/fate.txt}.
  353. @bye