developer.texi 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418
  1. \input texinfo @c -*- texinfo -*-
  2. @settitle Developer Documentation
  3. @titlepage
  4. @sp 7
  5. @center @titlefont{Developer Documentation}
  6. @sp 3
  7. @end titlepage
  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 libavcodec or libavformat in your program
  19. You can integrate all the source code of the libraries to link them
  20. statically to avoid any version problem. All you need is to provide a
  21. 'config.mak' and a 'config.h' in the parent directory. See the defines
  22. generated by ./configure to understand what is needed.
  23. You can use libavcodec or libavformat in your commercial program, but
  24. @emph{any patch you make must be published}. The best way to proceed is
  25. to send your patches to the FFmpeg mailing list.
  26. @node Coding Rules
  27. @section Coding Rules
  28. FFmpeg is programmed in the ISO C90 language with a few additional
  29. features from ISO C99, namely:
  30. @itemize @bullet
  31. @item
  32. the @samp{inline} keyword;
  33. @item
  34. @samp{//} comments;
  35. @item
  36. designated struct initializers (@samp{struct s x = @{ .i = 17 @};})
  37. @item
  38. compound literals (@samp{x = (struct s) @{ 17, 23 @};})
  39. @end itemize
  40. These features are supported by all compilers we care about, so we will not
  41. accept patches to remove their use unless they absolutely do not impair
  42. clarity and performance.
  43. All code must compile with GCC 2.95 and GCC 3.3. Currently, FFmpeg also
  44. compiles with several other compilers, such as the Compaq ccc compiler
  45. or Sun Studio 9, and we would like to keep it that way unless it would
  46. be exceedingly involved. To ensure compatibility, please do not use any
  47. additional C99 features or GCC extensions. Especially watch out for:
  48. @itemize @bullet
  49. @item
  50. mixing statements and declarations;
  51. @item
  52. @samp{long long} (use @samp{int64_t} instead);
  53. @item
  54. @samp{__attribute__} not protected by @samp{#ifdef __GNUC__} or similar;
  55. @item
  56. GCC statement expressions (@samp{(x = (@{ int y = 4; y; @})}).
  57. @end itemize
  58. Indent size is 4.
  59. The presentation is the one specified by 'indent -i4 -kr -nut'.
  60. The TAB character is forbidden outside of Makefiles as is any
  61. form of trailing whitespace. Commits containing either will be
  62. rejected by the Subversion repository.
  63. The main priority in FFmpeg is simplicity and small code size in order to
  64. minimize the bug count.
  65. Comments: Use the JavaDoc/Doxygen
  66. format (see examples below) so that code documentation
  67. can be generated automatically. All nontrivial functions should have a comment
  68. above them explaining what the function does, even if it is just one sentence.
  69. All structures and their member variables should be documented, too.
  70. @example
  71. /**
  72. * @@file mpeg.c
  73. * MPEG codec.
  74. * @@author ...
  75. */
  76. /**
  77. * Summary sentence.
  78. * more text ...
  79. * ...
  80. */
  81. typedef struct Foobar@{
  82. int var1; /**< var1 description */
  83. int var2; ///< var2 description
  84. /** var3 description */
  85. int var3;
  86. @} Foobar;
  87. /**
  88. * Summary sentence.
  89. * more text ...
  90. * ...
  91. * @@param my_parameter description of my_parameter
  92. * @@return return value description
  93. */
  94. int myfunc(int my_parameter)
  95. ...
  96. @end example
  97. fprintf and printf are forbidden in libavformat and libavcodec,
  98. please use av_log() instead.
  99. Casts should be used only when necessary. Unneeded parentheses
  100. should also be avoided if they don't make the code easier to understand.
  101. @section Development Policy
  102. @enumerate
  103. @item
  104. Contributions should be licensed under the LGPL 2.1, including an
  105. "or any later version" clause, or the MIT license. GPL 2 including
  106. an "or any later version" clause is also acceptable, but LGPL is
  107. preferred.
  108. @item
  109. You must not commit code which breaks FFmpeg! (Meaning unfinished but
  110. enabled code which breaks compilation or compiles but does not work or
  111. breaks the regression tests)
  112. You can commit unfinished stuff (for testing etc), but it must be disabled
  113. (#ifdef etc) by default so it does not interfere with other developers'
  114. work.
  115. @item
  116. You do not have to over-test things. If it works for you, and you think it
  117. should work for others, then commit. If your code has problems
  118. (portability, triggers compiler bugs, unusual environment etc) they will be
  119. reported and eventually fixed.
  120. @item
  121. Do not commit unrelated changes together, split them into self-contained
  122. pieces. Also do not forget that if part B depends on part A, but A does not
  123. depend on B, then A can and should be committed first and separate from B.
  124. Keeping changes well split into self-contained parts makes reviewing and
  125. understanding them on the commit log mailing list easier. This also helps
  126. in case of debugging later on.
  127. Also if you have doubts about splitting or not splitting, do not hesitate to
  128. ask/discuss it on the developer mailing list.
  129. @item
  130. Do not change behavior of the program (renaming options etc) without
  131. first discussing it on the ffmpeg-devel mailing list. Do not remove
  132. functionality from the code. Just improve!
  133. Note: Redundant code can be removed.
  134. @item
  135. Do not commit changes to the build system (Makefiles, configure script)
  136. which change behavior, defaults etc, without asking first. The same
  137. applies to compiler warning fixes, trivial looking fixes and to code
  138. maintained by other developers. We usually have a reason for doing things
  139. the way we do. Send your changes as patches to the ffmpeg-devel mailing
  140. list, and if the code maintainers say OK, you may commit. This does not
  141. apply to files you wrote and/or maintain.
  142. @item
  143. We refuse source indentation and other cosmetic changes if they are mixed
  144. with functional changes, such commits will be rejected and removed. Every
  145. developer has his own indentation style, you should not change it. Of course
  146. if you (re)write something, you can use your own style, even though we would
  147. prefer if the indentation throughout FFmpeg was consistent (Many projects
  148. force a given indentation style - we do not.). If you really need to make
  149. indentation changes (try to avoid this), separate them strictly from real
  150. changes.
  151. NOTE: If you had to put if()@{ .. @} over a large (> 5 lines) chunk of code,
  152. then either do NOT change the indentation of the inner part within (do not
  153. move it to the right)! or do so in a separate commit
  154. @item
  155. Always fill out the commit log message. Describe in a few lines what you
  156. changed and why. You can refer to mailing list postings if you fix a
  157. particular bug. Comments such as "fixed!" or "Changed it." are unacceptable.
  158. @item
  159. If you apply a patch by someone else, include the name and email address in
  160. the log message. Since the ffmpeg-cvslog mailing list is publicly
  161. archived you should add some SPAM protection to the email address. Send an
  162. answer to ffmpeg-devel (or wherever you got the patch from) saying that
  163. you applied the patch.
  164. @item
  165. When applying patches that have been discussed (at length) on the mailing
  166. list, reference the thread in the log message.
  167. @item
  168. Do NOT commit to code actively maintained by others without permission.
  169. Send a patch to ffmpeg-devel instead. If no one answers within a reasonable
  170. timeframe (12h for build failures and security fixes, 3 days small changes,
  171. 1 week for big patches) then commit your patch if you think it is OK.
  172. Also note, the maintainer can simply ask for more time to review!
  173. @item
  174. Subscribe to the ffmpeg-cvslog mailing list. The diffs of all commits
  175. are sent there and reviewed by all the other developers. Bugs and possible
  176. improvements or general questions regarding commits are discussed there. We
  177. expect you to react if problems with your code are uncovered.
  178. @item
  179. Update the documentation if you change behavior or add features. If you are
  180. unsure how best to do this, send a patch to ffmpeg-devel, the documentation
  181. maintainer(s) will review and commit your stuff.
  182. @item
  183. Try to keep important discussions and requests (also) on the public
  184. developer mailing list, so that all developers can benefit from them.
  185. @item
  186. Never write to unallocated memory, never write over the end of arrays,
  187. always check values read from some untrusted source before using them
  188. as array index or other risky things.
  189. @item
  190. Remember to check if you need to bump versions for the specific libav
  191. parts (libavutil, libavcodec, libavformat) you are changing. You need
  192. to change the version integer.
  193. Incrementing the first component means no backward compatibility to
  194. previous versions (e.g. removal of a function from the public API).
  195. Incrementing the second component means backward compatible change
  196. (e.g. addition of a function to the public API or extension of an
  197. existing data structure).
  198. Incrementing the third component means a noteworthy binary compatible
  199. change (e.g. encoder bug fix that matters for the decoder).
  200. @item
  201. Compiler warnings indicate potential bugs or code with bad style. If a type of
  202. warning always points to correct and clean code, that warning should
  203. be disabled, not the code changed.
  204. Thus the remaining warnings can either be bugs or correct code.
  205. If it is a bug, the bug has to be fixed. If it is not, the code should
  206. be changed to not generate a warning unless that causes a slowdown
  207. or obfuscates the code.
  208. @item
  209. If you add a new file, give it a proper license header. Do not copy and
  210. paste it from a random place, use an existing file as template.
  211. @end enumerate
  212. We think our rules are not too hard. If you have comments, contact us.
  213. Note, these rules are mostly borrowed from the MPlayer project.
  214. @section Submitting patches
  215. First, (@pxref{Coding Rules}) above if you did not yet.
  216. When you submit your patch, try to send a unified diff (diff '-up'
  217. option). We cannot read other diffs :-)
  218. Also please do not submit a patch which contains several unrelated changes.
  219. Split it into separate, self-contained pieces. This does not mean splitting
  220. file by file. Instead, make the patch as small as possible while still
  221. keeping it as a logical unit that contains an individual change, even
  222. if it spans multiple files. This makes reviewing your patches much easier
  223. for us and greatly increases your chances of getting your patch applied.
  224. Run the regression tests before submitting a patch so that you can
  225. verify that there are no big problems.
  226. Patches should be posted as base64 encoded attachments (or any other
  227. encoding which ensures that the patch will not be trashed during
  228. transmission) to the ffmpeg-devel mailing list, see
  229. @url{http://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-devel}
  230. It also helps quite a bit if you tell us what the patch does (for example
  231. 'replaces lrint by lrintf'), and why (for example '*BSD isn't C99 compliant
  232. and has no lrint()')
  233. Also please if you send several patches, send each patch as a separate mail,
  234. do not attach several unrelated patches to the same mail.
  235. @section New codecs or formats checklist
  236. @enumerate
  237. @item
  238. Did you use av_cold for codec initialization and close functions?
  239. @item
  240. Did you add a long_name under NULL_IF_CONFIG_SMALL to the AVCodec or
  241. AVInputFormat/AVOutputFormat struct?
  242. @item
  243. Did you bump the minor version number in @file{avcodec.h} or
  244. @file{avformat.h}?
  245. @item
  246. Did you register it in @file{allcodecs.c} or @file{allformats.c}?
  247. @item
  248. Did you add the CodecID to @file{avcodec.h}?
  249. @item
  250. If it has a fourcc, did you add it to @file{libavformat/riff.c},
  251. even if it is only a decoder?
  252. @item
  253. Did you add a rule to compile the appropriate files in the Makefile?
  254. Remember to do this even if you're just adding a format to a file that is
  255. already being compiled by some other rule, like a raw demuxer.
  256. @item
  257. Did you add an entry to the table of supported formats or codecs in the
  258. documentation?
  259. @item
  260. Did you add an entry in the Changelog?
  261. @item
  262. If it depends on a parser or a library, did you add that dependency in
  263. configure?
  264. @item
  265. Did you "svn add" the appropriate files before commiting?
  266. @end enumerate
  267. @section patch submission checklist
  268. @enumerate
  269. @item
  270. Do the regression tests pass with the patch applied?
  271. @item
  272. Does @code{make checkheaders} pass with the patch applied?
  273. @item
  274. Is the patch a unified diff?
  275. @item
  276. Is the patch against latest FFmpeg SVN?
  277. @item
  278. Are you subscribed to ffmpeg-dev?
  279. (the list is subscribers only due to spam)
  280. @item
  281. Have you checked that the changes are minimal, so that the same cannot be
  282. achieved with a smaller patch and/or simpler final code?
  283. @item
  284. If the change is to speed critical code, did you benchmark it?
  285. @item
  286. If you did any benchmarks, did you provide them in the mail?
  287. @item
  288. Have you checked that the patch does not introduce buffer overflows or
  289. other security issues?
  290. @item
  291. Did you test your decoder or demuxer against damaged data? If no, see
  292. tools/trasher and the noise bitstream filter. Your decoder or demuxer
  293. should not crash or end in a (near) infinite loop when fed damaged data.
  294. @item
  295. Is the patch created from the root of the source tree, so it can be
  296. applied with @code{patch -p0}?
  297. @item
  298. Does the patch not mix functional and cosmetic changes?
  299. @item
  300. Did you add tabs or trailing whitespace to the code? Both are forbidden.
  301. @item
  302. Is the patch attached to the email you send?
  303. @item
  304. Is the mime type of the patch correct? It should be text/x-diff or
  305. text/x-patch or at least text/plain and not application/octet-stream.
  306. @item
  307. If the patch fixes a bug, did you provide a verbose analysis of the bug?
  308. @item
  309. If the patch fixes a bug, did you provide enough information, including
  310. a sample, so the bug can be reproduced and the fix can be verified?
  311. Note please do not attach samples >100k to mails but rather provide a
  312. URL, you can upload to ftp://upload.ffmpeg.org
  313. @item
  314. Did you provide a verbose summary about what the patch does change?
  315. @item
  316. Did you provide a verbose explanation why it changes things like it does?
  317. @item
  318. Did you provide a verbose summary of the user visible advantages and
  319. disadvantages if the patch is applied?
  320. @item
  321. Did you provide an example so we can verify the new feature added by the
  322. patch easily?
  323. @item
  324. If you added a new file, did you insert a license header? It should be
  325. taken from FFmpeg, not randomly copied and pasted from somewhere else.
  326. @item
  327. You should maintain alphabetical order in alphabetically ordered lists as
  328. long as doing so does not break API/ABI compatibility.
  329. @item
  330. Lines with similar content should be aligned vertically when doing so
  331. improves readability.
  332. @item
  333. Did you provide a suggestion for a clear commit log message?
  334. @end enumerate
  335. @section Patch review process
  336. All patches posted to ffmpeg-devel will be reviewed, unless they contain a
  337. clear note that the patch is not for SVN.
  338. Reviews and comments will be posted as replies to the patch on the
  339. mailing list. The patch submitter then has to take care of every comment,
  340. that can be by resubmitting a changed patch or by discussion. Resubmitted
  341. patches will themselves be reviewed like any other patch. If at some point
  342. a patch passes review with no comments then it is approved, that can for
  343. simple and small patches happen immediately while large patches will generally
  344. have to be changed and reviewed many times before they are approved.
  345. After a patch is approved it will be committed to the repository.
  346. We will review all submitted patches, but sometimes we are quite busy so
  347. especially for large patches this can take several weeks.
  348. When resubmitting patches, please do not make any significant changes
  349. not related to the comments received during review. Such patches will
  350. be rejected. Instead, submit significant changes or new features as
  351. separate patches.
  352. @section Regression tests
  353. Before submitting a patch (or committing to the repository), you should at least
  354. test that you did not break anything.
  355. The regression tests build a synthetic video stream and a synthetic
  356. audio stream. These are then encoded and decoded with all codecs or
  357. formats. The CRC (or MD5) of each generated file is recorded in a
  358. result file. A 'diff' is launched to compare the reference results and
  359. the result file.
  360. The regression tests then go on to test the FFserver code with a
  361. limited set of streams. It is important that this step runs correctly
  362. as well.
  363. Run 'make test' to test all the codecs and formats.
  364. Run 'make fulltest' to test all the codecs, formats and FFserver.
  365. [Of course, some patches may change the results of the regression tests. In
  366. this case, the reference results of the regression tests shall be modified
  367. accordingly].
  368. @bye