README.tech
上传用户:jxp0626
上传日期:2007-01-08
资源大小:102k
文件大小:2k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Unix_Linux

  1. Technical notes:
  2. ---------------
  3. Video:
  4. -----
  5. - The decision intra/predicted macroblock is the algorithm suggested
  6.   by the mpeg 1 specification.
  7. - only Huffman based H263 is supported, mainly because of patent
  8.   issues.
  9. - MPEG4 is supported, as an extension of the H263 encoder. MPEG4 DC
  10.   prediction is used, but not AC prediction. Specific VLC are used for
  11.   intra pictures. The output format is compatible with Open DIVX
  12.   version 47.
  13. - MJPEG is supported, but in the current version the huffman tables
  14.   are not optimized. It could be interesting to add this feature for
  15.   the flash format.
  16. - To increase speed, only motion vectors (0,0) are tested for real
  17.   time compression.
  18. - In high quality mode, full search is used for motion
  19.   vectors. Currently, only fcode = 1 is used for both H263/MPEG1. Half
  20.   pel vectors are used.
  21. I also plan to improve the bitrate control which is too simplistic.
  22. Audio:
  23. -----
  24. - I rewrote the mpeg audio layer 2 compatible encoder from scratch. It
  25.   is one of the simplest encoder you can imagine (800 lines of C code
  26.   !). It is also one of the fastest because of its simplicity. There
  27.   are still some problems of overflow. A minimal psycho acoustic model
  28.   could be added. Currently, stereo is supported, but not joint
  29.   stereo.
  30. - I rewrote the AC3 audio encoder from scratch. It is fairly naive,
  31.   but the result are quiet interesting at 64 kbit/s. It includes
  32.   extensions for low sampling rates used in some Internet
  33.   formats. Differential and coupled stereo is not handled. Stereo
  34.   channels are simply handled as two mono channels.