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.

526 lines
19KB

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