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.

485 lines
18KB

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