developer.texi 16 KB

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