]> git.sesse.net Git - casparcg/blob - ffmpeg 0.8/doc/developer.html
2.0.0.2: Updated to ffmpeg 0.8.
[casparcg] / ffmpeg 0.8 / doc / developer.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html401/loose.dtd">
2 <html>
3 <!-- Created on July 23, 2011 by texi2html 1.82
4 texi2html was written by: 
5             Lionel Cons <Lionel.Cons@cern.ch> (original author)
6             Karl Berry  <karl@freefriends.org>
7             Olaf Bachmann <obachman@mathematik.uni-kl.de>
8             and many others.
9 Maintained by: Many creative people.
10 Send bugs and suggestions to <texi2html-bug@nongnu.org>
11 -->
12 <head>
13 <title>Developer Documentation</title>
14
15 <meta name="description" content="Developer Documentation">
16 <meta name="keywords" content="Developer Documentation">
17 <meta name="resource-type" content="document">
18 <meta name="distribution" content="global">
19 <meta name="Generator" content="texi2html 1.82">
20 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
21 <style type="text/css">
22 <!--
23 a.summary-letter {text-decoration: none}
24 blockquote.smallquotation {font-size: smaller}
25 pre.display {font-family: serif}
26 pre.format {font-family: serif}
27 pre.menu-comment {font-family: serif}
28 pre.menu-preformatted {font-family: serif}
29 pre.smalldisplay {font-family: serif; font-size: smaller}
30 pre.smallexample {font-size: smaller}
31 pre.smallformat {font-family: serif; font-size: smaller}
32 pre.smalllisp {font-size: smaller}
33 span.roman {font-family:serif; font-weight:normal;}
34 span.sansserif {font-family:sans-serif; font-weight:normal;}
35 ul.toc {list-style: none}
36 -->
37 </style>
38
39
40 </head>
41
42 <body lang="en" bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
43
44 <a name="SEC_Top"></a>
45 <h1 class="settitle">Developer Documentation</h1>
46
47 <a name="SEC_Contents"></a>
48 <h1>Table of Contents</h1>
49 <div class="contents">
50
51 <ul class="toc">
52   <li><a name="toc-Developers-Guide" href="#Developers-Guide">1. Developers Guide</a>
53   <ul class="toc">
54     <li><a name="toc-API" href="#API">1.1 API</a></li>
55     <li><a name="toc-Integrating-libavcodec-or-libavformat-in-your-program" href="#Integrating-libavcodec-or-libavformat-in-your-program">1.2 Integrating libavcodec or libavformat in your program</a></li>
56     <li><a name="toc-Coding-Rules-1" href="#Coding-Rules-1">1.3 Coding Rules</a></li>
57     <li><a name="toc-Development-Policy" href="#Development-Policy">1.4 Development Policy</a></li>
58     <li><a name="toc-Submitting-patches" href="#Submitting-patches">1.5 Submitting patches</a></li>
59     <li><a name="toc-New-codecs-or-formats-checklist" href="#New-codecs-or-formats-checklist">1.6 New codecs or formats checklist</a></li>
60     <li><a name="toc-patch-submission-checklist" href="#patch-submission-checklist">1.7 patch submission checklist</a></li>
61     <li><a name="toc-Patch-review-process" href="#Patch-review-process">1.8 Patch review process</a></li>
62     <li><a name="toc-Regression-tests" href="#Regression-tests">1.9 Regression tests</a></li>
63   </ul>
64 </li>
65 </ul>
66 </div>
67
68 <hr size="1">
69 <a name="Developers-Guide"></a>
70 <h1 class="chapter"><a href="developer.html#toc-Developers-Guide">1. Developers Guide</a></h1>
71
72 <a name="API"></a>
73 <h2 class="section"><a href="developer.html#toc-API">1.1 API</a></h2>
74 <ul>
75 <li> libavcodec is the library containing the codecs (both encoding and
76 decoding). Look at &lsquo;<tt>libavcodec/apiexample.c</tt>&rsquo; to see how to use it.
77
78 </li><li> libavformat is the library containing the file format handling (mux and
79 demux code for several formats). Look at &lsquo;<tt>ffplay.c</tt>&rsquo; to use it in a
80 player. See &lsquo;<tt>libavformat/output-example.c</tt>&rsquo; to use it to generate
81 audio or video streams.
82
83 </li></ul>
84
85 <a name="Integrating-libavcodec-or-libavformat-in-your-program"></a>
86 <h2 class="section"><a href="developer.html#toc-Integrating-libavcodec-or-libavformat-in-your-program">1.2 Integrating libavcodec or libavformat in your program</a></h2>
87
88 <p>You can integrate all the source code of the libraries to link them
89 statically to avoid any version problem. All you need is to provide a
90 &rsquo;config.mak&rsquo; and a &rsquo;config.h&rsquo; in the parent directory. See the defines
91 generated by ./configure to understand what is needed.
92 </p>
93 <p>You can use libavcodec or libavformat in your commercial program, but
94 <em>any patch you make must be published</em>. The best way to proceed is
95 to send your patches to the FFmpeg mailing list.
96 </p>
97
98 <p><a name="Coding-Rules"></a>
99 </p><a name="Coding-Rules-1"></a>
100 <h2 class="section"><a href="developer.html#toc-Coding-Rules-1">1.3 Coding Rules</a></h2>
101
102 <p>FFmpeg is programmed in the ISO C90 language with a few additional
103 features from ISO C99, namely:
104 </p><ul>
105 <li>
106 the &lsquo;<samp>inline</samp>&rsquo; keyword;
107 </li><li>
108 &lsquo;<samp>//</samp>&rsquo; comments;
109 </li><li>
110 designated struct initializers (&lsquo;<samp>struct s x = { .i = 17 };</samp>&rsquo;)
111 </li><li>
112 compound literals (&lsquo;<samp>x = (struct s) { 17, 23 };</samp>&rsquo;)
113 </li></ul>
114
115 <p>These features are supported by all compilers we care about, so we will not
116 accept patches to remove their use unless they absolutely do not impair
117 clarity and performance.
118 </p>
119 <p>All code must compile with recent versions of GCC and a number of other
120 currently supported compilers. To ensure compatibility, please do not use
121 additional C99 features or GCC extensions. Especially watch out for:
122 </p><ul>
123 <li>
124 mixing statements and declarations;
125 </li><li>
126 &lsquo;<samp>long long</samp>&rsquo; (use &lsquo;<samp>int64_t</samp>&rsquo; instead);
127 </li><li>
128 &lsquo;<samp>__attribute__</samp>&rsquo; not protected by &lsquo;<samp>#ifdef __GNUC__</samp>&rsquo; or similar;
129 </li><li>
130 GCC statement expressions (&lsquo;<samp>(x = ({ int y = 4; y; })</samp>&rsquo;).
131 </li></ul>
132
133 <p>Indent size is 4.
134 The presentation is one inspired by &rsquo;indent -i4 -kr -nut&rsquo;.
135 The TAB character is forbidden outside of Makefiles as is any
136 form of trailing whitespace. Commits containing either will be
137 rejected by the git repository.
138 </p>
139 <p>The main priority in FFmpeg is simplicity and small code size in order to
140 minimize the bug count.
141 </p>
142 <p>Comments: Use the JavaDoc/Doxygen
143 format (see examples below) so that code documentation
144 can be generated automatically. All nontrivial functions should have a comment
145 above them explaining what the function does, even if it is just one sentence.
146 All structures and their member variables should be documented, too.
147 </p><table><tr><td>&nbsp;</td><td><pre class="example">/**
148  * @file
149  * MPEG codec.
150  * @author ...
151  */
152
153 /**
154  * Summary sentence.
155  * more text ...
156  * ...
157  */
158 typedef struct Foobar{
159     int var1; /**&lt; var1 description */
160     int var2; ///&lt; var2 description
161     /** var3 description */
162     int var3;
163 } Foobar;
164
165 /**
166  * Summary sentence.
167  * more text ...
168  * ...
169  * @param my_parameter description of my_parameter
170  * @return return value description
171  */
172 int myfunc(int my_parameter)
173 ...
174 </pre></td></tr></table>
175
176 <p>fprintf and printf are forbidden in libavformat and libavcodec,
177 please use av_log() instead.
178 </p>
179 <p>Casts should be used only when necessary. Unneeded parentheses
180 should also be avoided if they don&rsquo;t make the code easier to understand.
181 </p>
182 <a name="Development-Policy"></a>
183 <h2 class="section"><a href="developer.html#toc-Development-Policy">1.4 Development Policy</a></h2>
184
185 <ol>
186 <li>
187    Contributions should be licensed under the LGPL 2.1, including an
188    &quot;or any later version&quot; clause, or the MIT license.  GPL 2 including
189    an &quot;or any later version&quot; clause is also acceptable, but LGPL is
190    preferred.
191 </li><li>
192    You must not commit code which breaks FFmpeg! (Meaning unfinished but
193    enabled code which breaks compilation or compiles but does not work or
194    breaks the regression tests)
195    You can commit unfinished stuff (for testing etc), but it must be disabled
196    (#ifdef etc) by default so it does not interfere with other developers&rsquo;
197    work.
198 </li><li>
199    You do not have to over-test things. If it works for you, and you think it
200    should work for others, then commit. If your code has problems
201    (portability, triggers compiler bugs, unusual environment etc) they will be
202    reported and eventually fixed.
203 </li><li>
204    Do not commit unrelated changes together, split them into self-contained
205    pieces. Also do not forget that if part B depends on part A, but A does not
206    depend on B, then A can and should be committed first and separate from B.
207    Keeping changes well split into self-contained parts makes reviewing and
208    understanding them on the commit log mailing list easier. This also helps
209    in case of debugging later on.
210    Also if you have doubts about splitting or not splitting, do not hesitate to
211    ask/discuss it on the developer mailing list.
212 </li><li>
213    Do not change behavior of the programs (renaming options etc) or public
214    API or ABI without first discussing it on the ffmpeg-devel mailing list.
215    Do not remove functionality from the code. Just improve!
216
217 <p>   Note: Redundant code can be removed.
218 </p></li><li>
219    Do not commit changes to the build system (Makefiles, configure script)
220    which change behavior, defaults etc, without asking first. The same
221    applies to compiler warning fixes, trivial looking fixes and to code
222    maintained by other developers. We usually have a reason for doing things
223    the way we do. Send your changes as patches to the ffmpeg-devel mailing
224    list, and if the code maintainers say OK, you may commit. This does not
225    apply to files you wrote and/or maintain.
226 </li><li>
227    We refuse source indentation and other cosmetic changes if they are mixed
228    with functional changes, such commits will be rejected and removed. Every
229    developer has his own indentation style, you should not change it. Of course
230    if you (re)write something, you can use your own style, even though we would
231    prefer if the indentation throughout FFmpeg was consistent (Many projects
232    force a given indentation style - we do not.). If you really need to make
233    indentation changes (try to avoid this), separate them strictly from real
234    changes.
235
236 <p>   NOTE: If you had to put if(){ .. } over a large (&gt; 5 lines) chunk of code,
237    then either do NOT change the indentation of the inner part within (do not
238    move it to the right)! or do so in a separate commit
239 </p></li><li>
240    Always fill out the commit log message. Describe in a few lines what you
241    changed and why. You can refer to mailing list postings if you fix a
242    particular bug. Comments such as &quot;fixed!&quot; or &quot;Changed it.&quot; are unacceptable.
243    Recommanded format:
244    area changed: Short 1 line description
245
246 <p>   details describing what and why and giving references.
247 </p></li><li>
248    Make sure the author of the commit is set correctly. (see git commit &ndash;author)
249    If you apply a patch, send an
250    answer to ffmpeg-devel (or wherever you got the patch from) saying that
251    you applied the patch.
252 </li><li>
253    When applying patches that have been discussed (at length) on the mailing
254    list, reference the thread in the log message.
255 </li><li>
256     Do NOT commit to code actively maintained by others without permission.
257     Send a patch to ffmpeg-devel instead. If no one answers within a reasonable
258     timeframe (12h for build failures and security fixes, 3 days small changes,
259     1 week for big patches) then commit your patch if you think it is OK.
260     Also note, the maintainer can simply ask for more time to review!
261 </li><li>
262     Subscribe to the ffmpeg-cvslog mailing list. The diffs of all commits
263     are sent there and reviewed by all the other developers. Bugs and possible
264     improvements or general questions regarding commits are discussed there. We
265     expect you to react if problems with your code are uncovered.
266 </li><li>
267     Update the documentation if you change behavior or add features. If you are
268     unsure how best to do this, send a patch to ffmpeg-devel, the documentation
269     maintainer(s) will review and commit your stuff.
270 </li><li>
271     Try to keep important discussions and requests (also) on the public
272     developer mailing list, so that all developers can benefit from them.
273 </li><li>
274     Never write to unallocated memory, never write over the end of arrays,
275     always check values read from some untrusted source before using them
276     as array index or other risky things.
277 </li><li>
278     Remember to check if you need to bump versions for the specific libav
279     parts (libavutil, libavcodec, libavformat) you are changing. You need
280     to change the version integer.
281     Incrementing the first component means no backward compatibility to
282     previous versions (e.g. removal of a function from the public API).
283     Incrementing the second component means backward compatible change
284     (e.g. addition of a function to the public API or extension of an
285     existing data structure).
286     Incrementing the third component means a noteworthy binary compatible
287     change (e.g. encoder bug fix that matters for the decoder).
288 </li><li>
289     Compiler warnings indicate potential bugs or code with bad style. If a type of
290     warning always points to correct and clean code, that warning should
291     be disabled, not the code changed.
292     Thus the remaining warnings can either be bugs or correct code.
293     If it is a bug, the bug has to be fixed. If it is not, the code should
294     be changed to not generate a warning unless that causes a slowdown
295     or obfuscates the code.
296 </li><li>
297     If you add a new file, give it a proper license header. Do not copy and
298     paste it from a random place, use an existing file as template.
299 </li></ol>
300
301 <p>We think our rules are not too hard. If you have comments, contact us.
302 </p>
303 <p>Note, these rules are mostly borrowed from the MPlayer project.
304 </p>
305 <a name="Submitting-patches"></a>
306 <h2 class="section"><a href="developer.html#toc-Submitting-patches">1.5 Submitting patches</a></h2>
307
308 <p>First, read the <a href="#Coding-Rules">Coding Rules</a> above if you did not yet, in particular
309 the rules regarding patch submission.
310 </p>
311 <p>When you submit your patch, please use <code>git format-patch</code> or
312 <code>git send-email</code>. We cannot read other diffs :-)
313 </p>
314 <p>Also please do not submit a patch which contains several unrelated changes.
315 Split it into separate, self-contained pieces. This does not mean splitting
316 file by file. Instead, make the patch as small as possible while still
317 keeping it as a logical unit that contains an individual change, even
318 if it spans multiple files. This makes reviewing your patches much easier
319 for us and greatly increases your chances of getting your patch applied.
320 </p>
321 <p>Use the patcheck tool of FFmpeg to check your patch.
322 The tool is located in the tools directory.
323 </p>
324 <p>Run the @ref{Regression Tests} before submitting a patch in order to verify
325 it does not cause unexpected problems.
326 </p>
327 <p>Patches should be posted as base64 encoded attachments (or any other
328 encoding which ensures that the patch will not be trashed during
329 transmission) to the ffmpeg-devel mailing list, see
330 <a href="http://lists.ffmpeg.org/mailman/listinfo/ffmpeg-devel">http://lists.ffmpeg.org/mailman/listinfo/ffmpeg-devel</a>
331 </p>
332 <p>It also helps quite a bit if you tell us what the patch does (for example
333 &rsquo;replaces lrint by lrintf&rsquo;), and why (for example &rsquo;*BSD isn&rsquo;t C99 compliant
334 and has no lrint()&rsquo;)
335 </p>
336 <p>Also please if you send several patches, send each patch as a separate mail,
337 do not attach several unrelated patches to the same mail.
338 </p>
339 <p>Your patch will be reviewed on the mailing list. You will likely be asked
340 to make some changes and are expected to send in an improved version that
341 incorporates the requests from the review. This process may go through
342 several iterations. Once your patch is deemed good enough, some developer
343 will pick it up and commit it to the official FFmpeg tree.
344 </p>
345 <p>Give us a few days to react. But if some time passes without reaction,
346 send a reminder by email. Your patch should eventually be dealt with.
347 </p>
348
349 <a name="New-codecs-or-formats-checklist"></a>
350 <h2 class="section"><a href="developer.html#toc-New-codecs-or-formats-checklist">1.6 New codecs or formats checklist</a></h2>
351
352 <ol>
353 <li>
354     Did you use av_cold for codec initialization and close functions?
355 </li><li>
356     Did you add a long_name under NULL_IF_CONFIG_SMALL to the AVCodec or
357     AVInputFormat/AVOutputFormat struct?
358 </li><li>
359     Did you bump the minor version number (and reset the micro version
360     number) in &lsquo;<tt>avcodec.h</tt>&rsquo; or &lsquo;<tt>avformat.h</tt>&rsquo;?
361 </li><li>
362     Did you register it in &lsquo;<tt>allcodecs.c</tt>&rsquo; or &lsquo;<tt>allformats.c</tt>&rsquo;?
363 </li><li>
364     Did you add the CodecID to &lsquo;<tt>avcodec.h</tt>&rsquo;?
365 </li><li>
366     If it has a fourcc, did you add it to &lsquo;<tt>libavformat/riff.c</tt>&rsquo;,
367     even if it is only a decoder?
368 </li><li>
369     Did you add a rule to compile the appropriate files in the Makefile?
370     Remember to do this even if you&rsquo;re just adding a format to a file that is
371     already being compiled by some other rule, like a raw demuxer.
372 </li><li>
373     Did you add an entry to the table of supported formats or codecs in
374     &lsquo;<tt>doc/general.texi</tt>&rsquo;?
375 </li><li>
376     Did you add an entry in the Changelog?
377 </li><li>
378     If it depends on a parser or a library, did you add that dependency in
379     configure?
380 </li><li>
381     Did you <code>git add</code> the appropriate files before committing?
382 </li><li>
383     Did you make sure it compiles standalone, i.e. with
384     <code>configure --disable-everything --enable-decoder=foo</code>
385     (or <code>--enable-demuxer</code> or whatever your component is)?
386 </li></ol>
387
388
389 <a name="patch-submission-checklist"></a>
390 <h2 class="section"><a href="developer.html#toc-patch-submission-checklist">1.7 patch submission checklist</a></h2>
391
392 <ol>
393 <li>
394     Does &rsquo;make fate&rsquo; pass with the patch applied?
395 </li><li>
396     Was the patch generated with git format-patch or send-email?
397 </li><li>
398     Did you sign off your patch? (git commit -s)
399     See <a href="http://kerneltrap.org/files/Jeremy/DCO.txt">http://kerneltrap.org/files/Jeremy/DCO.txt</a> for the meaning
400     of sign off.
401 </li><li>
402     Did you provide a clear git commit log message?
403 </li><li>
404     Is the patch against latest FFmpeg git master branch?
405 </li><li>
406     Are you subscribed to ffmpeg-dev?
407     (the list is subscribers only due to spam)
408 </li><li>
409     Have you checked that the changes are minimal, so that the same cannot be
410     achieved with a smaller patch and/or simpler final code?
411 </li><li>
412     If the change is to speed critical code, did you benchmark it?
413 </li><li>
414     If you did any benchmarks, did you provide them in the mail?
415 </li><li>
416     Have you checked that the patch does not introduce buffer overflows or
417     other security issues?
418 </li><li>
419     Did you test your decoder or demuxer against damaged data? If no, see
420     tools/trasher and the noise bitstream filter. Your decoder or demuxer
421     should not crash or end in a (near) infinite loop when fed damaged data.
422 </li><li>
423     Does the patch not mix functional and cosmetic changes?
424 </li><li>
425     Did you add tabs or trailing whitespace to the code? Both are forbidden.
426 </li><li>
427     Is the patch attached to the email you send?
428 </li><li>
429     Is the mime type of the patch correct? It should be text/x-diff or
430     text/x-patch or at least text/plain and not application/octet-stream.
431 </li><li>
432     If the patch fixes a bug, did you provide a verbose analysis of the bug?
433 </li><li>
434     If the patch fixes a bug, did you provide enough information, including
435     a sample, so the bug can be reproduced and the fix can be verified?
436     Note please do not attach samples &gt;100k to mails but rather provide a
437     URL, you can upload to ftp://upload.ffmpeg.org
438 </li><li>
439     Did you provide a verbose summary about what the patch does change?
440 </li><li>
441     Did you provide a verbose explanation why it changes things like it does?
442 </li><li>
443     Did you provide a verbose summary of the user visible advantages and
444     disadvantages if the patch is applied?
445 </li><li>
446     Did you provide an example so we can verify the new feature added by the
447     patch easily?
448 </li><li>
449     If you added a new file, did you insert a license header? It should be
450     taken from FFmpeg, not randomly copied and pasted from somewhere else.
451 </li><li>
452     You should maintain alphabetical order in alphabetically ordered lists as
453     long as doing so does not break API/ABI compatibility.
454 </li><li>
455     Lines with similar content should be aligned vertically when doing so
456     improves readability.
457 </li><li>
458     Consider to add a regression test for your code.
459 </li><li>
460     If you added YASM code please check that things still work with &ndash;disable-yasm
461 </li></ol>
462
463 <a name="Patch-review-process"></a>
464 <h2 class="section"><a href="developer.html#toc-Patch-review-process">1.8 Patch review process</a></h2>
465
466 <p>All patches posted to ffmpeg-devel will be reviewed, unless they contain a
467 clear note that the patch is not for the git master branch.
468 Reviews and comments will be posted as replies to the patch on the
469 mailing list. The patch submitter then has to take care of every comment,
470 that can be by resubmitting a changed patch or by discussion. Resubmitted
471 patches will themselves be reviewed like any other patch. If at some point
472 a patch passes review with no comments then it is approved, that can for
473 simple and small patches happen immediately while large patches will generally
474 have to be changed and reviewed many times before they are approved.
475 After a patch is approved it will be committed to the repository.
476 </p>
477 <p>We will review all submitted patches, but sometimes we are quite busy so
478 especially for large patches this can take several weeks.
479 </p>
480 <p>When resubmitting patches, please do not make any significant changes
481 not related to the comments received during review. Such patches will
482 be rejected. Instead, submit  significant changes or new features as
483 separate patches.
484 </p>
485 <a name="Regression-tests"></a>
486 <h2 class="section"><a href="developer.html#toc-Regression-tests">1.9 Regression tests</a></h2>
487
488 <p>Before submitting a patch (or committing to the repository), you should at least
489 test that you did not break anything.
490 </p>
491 <p>The regression tests build a synthetic video stream and a synthetic
492 audio stream. These are then encoded and decoded with all codecs or
493 formats. The CRC (or MD5) of each generated file is recorded in a
494 result file. A &rsquo;diff&rsquo; is launched to compare the reference results and
495 the result file. The output is checked immediately after each test
496 has run.
497 </p>
498 <p>The regression tests then go on to test the FFserver code with a
499 limited set of streams. It is important that this step runs correctly
500 as well.
501 </p>
502 <p>Run &rsquo;make test&rsquo; to test all the codecs and formats. Commands like
503 &rsquo;make regtest-mpeg2&rsquo; can be used to run a single test. By default,
504 make will abort if any test fails. To run all tests regardless,
505 use make -k. To get a more verbose output, use &rsquo;make V=1 test&rsquo; or
506 &rsquo;make V=2 test&rsquo;.
507 </p>
508 <p>Run &rsquo;make fulltest&rsquo; to test all the codecs, formats and FFserver.
509 </p>
510 <p>[Of course, some patches may change the results of the regression tests. In
511 this case, the reference results of the regression tests shall be modified
512 accordingly].
513 </p>
514 <hr size="1">
515 <p>
516  <font size="-1">
517   This document was generated by <em>Kyle Schwarz</em> on <em>July 23, 2011</em> using <a href="http://www.nongnu.org/texi2html/"><em>texi2html 1.82</em></a>.
518  </font>
519  <br>
520
521 </p>
522 </body>
523 </html>