diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2001-07-22 14:18:56 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2001-07-22 14:18:56 +0000 |
commit | de6d9b6404bfd1c589799142da5a95428f146edd (patch) | |
tree | 75ae0cbb74bdfafb6f1a40922db111a103db3bcf /doc/README.dev | |
parent | 1b58d58ddaf8a8c766a0353885ff504babed0453 (diff) | |
download | ffmpeg-de6d9b6404bfd1c589799142da5a95428f146edd.tar.gz |
Initial revision
Originally committed as revision 5 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'doc/README.dev')
-rw-r--r-- | doc/README.dev | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/README.dev b/doc/README.dev new file mode 100644 index 0000000000..ae28bc03be --- /dev/null +++ b/doc/README.dev @@ -0,0 +1,20 @@ +1) API +------ + +* libavcodec is the library containing the codecs (both encoding and + decoding). See libavcodec/apiexample.c to see how to use it. + +* libav is the library containing the file formats handling (mux and + demux code for several formats). (no example yet, the API is likely + to evolve). + +2) Coding Rules +--------------- + +ffmpeg is programmed in ANSI C language. GCC extension are +tolerated. TAB size is 4. The identation is the one specified by +'indent -i4 -kr'. + +Main priority in ffmpeg is simplicity and small code size (=less +bugs). + |