ffmpeg/doc
Fabrice Bellard b71c30becb removed obsolete file
Originally committed as revision 1040 to svn://svn.ffmpeg.org/ffmpeg/trunk
2002-10-15 09:08:42 +00:00
..
FAQ update 2001-09-24 23:22:43 +00:00
HOWTO-STREAM Add notes on the ?date= format. 2002-07-27 03:22:55 +00:00
README.beos beos/mov/adpcm patch by François Revol <revol at free dot fr> 2002-07-20 20:05:50 +00:00
README.dev base64 encoded patches posted to the devel list are prefered 2002-08-29 13:29:01 +00:00
README.tech update 2002-05-25 22:26:48 +00:00
TODO update 2002-05-25 22:26:48 +00:00
ffmpeg.txt - Updating docs.... 2002-05-09 04:37:38 +00:00
ffserver.conf Add some examples of using ACL 2002-07-27 03:03:44 +00:00
ffserver.txt update 2002-05-20 16:22:05 +00:00

README.tech

Technical notes:
---------------

Video:
-----

- The decision intra/predicted macroblock is the algorithm suggested
  by the mpeg 1 specification.

- only Huffman based H263 is supported, mainly because of patent
  issues.

- MPEG4 is supported, as an extension of the H263 encoder. MPEG4 DC
  prediction is used, but not AC prediction. Specific VLC are used for
  intra pictures. The output format is compatible with Open DIVX
  version 47.

- MJPEG is supported, but in the current version the huffman tables
  are not optimized. It could be interesting to add this feature for
  the flash format.

- To increase speed, only motion vectors (0,0) are tested for real
  time compression. NEW: now motion compensation is done with several
  methods : none, full, log, and phods. The code is mmx/sse optimized.

- In high quality mode, full search is used for motion
  vectors. Currently, only fcode = 1 is used for both H263/MPEG1. Half
  pel vectors are used.

Audio:
-----

- The mpeg audio layer 2 compatible encoder was rewritten from
  scratch. It is one of the simplest encoder you can imagine (800
  lines of C code !). It is also one of the fastest because of its
  simplicity. There are still some problems of overflow. A minimal
  psycho acoustic model could be added. Currently, stereo is
  supported, but not joint stereo.

- The AC3 audio encoder was rewritten from scratch. It is fairly
  naive, but the result are quiet interesting at 64 kbit/s. It
  includes extensions for low sampling rates used in some Internet
  formats. Differential and coupled stereo is not handled. Stereo
  channels are simply handled as two mono channels.

- The mpeg audio layer 3 decoder was rewritten from scratch. It uses
  only integers and can be 16 bit precision for the synthesis filter
  at the expense of a slight precision loss. A slower bit exact mode
  is available too for compliance testing.