README
上传用户:hkgotone
上传日期:2013-02-17
资源大小:293k
文件大小:9k
源码类别:

Windows Mobile

开发平台:

C/C++

  1.                           mpeg2encode / mpeg2decode
  2.                           =========================
  3.               MPEG-2 Encoder / Decoder, Version 1.2, July 19, 1996
  4.                              Copyright (c) 1996 
  5.                         MPEG Software Simulation Group
  6.                      E-mail:   mssg@mpeg.org  (author contact)
  7.                      Web:      http://www.mpeg.org/MSSG/
  8.                      FTP:      ftp://ftp.mpeg.org/pub/mpeg/mssg/
  9. Contents:
  10. 1. Overview
  11. 2. Introduction
  12. 3. Contacting the MPEG Software Simulation Group
  13. 4. Availability 
  14. 5. Installation
  15. 6. Acknowledgements
  16. 7. History of the technical report
  17. 1. Overview
  18. ===========
  19. This directory contains our implementation of an ISO/IEC DIS 13818-2
  20. codec.  It converts uncompressed video frames into MPEG-1 and MPEG-2
  21. video coded bitstream sequences, and vice versa.
  22. The files mpeg2enc.doc and mpeg2dec.doc in the doc/ directory contain
  23. further information about the codec. The directory verify/ contains
  24. a small set of verification pictures, a small bitstream, and Unix 
  25. shell script to automatically test the output of the encoder and decoder.
  26. A precompiled version of the programs for Win32s (Windows NT/95) will
  27. be made available later date, although it is trivial to make a console
  28. application from the encoder and decoder with most Win32s compilers
  29. (such as Microsoft Visual C++).
  30. Subdirectories src/mpeg2enc and src/mpeg2dec contain the source code
  31. for the encoder and decoder, subdirectory par/ contains a couple of
  32. example encoder parameter files for 25 and 30 frames/sec MPEG-2 and
  33. MPEG-1 video.
  34. Summary of changes since July 4, 1994 release:
  35. This is only the second official release of our MPEG-2 video software.
  36. Only minor bug corrections have been added to the encoder.  We still do
  37. not implement scalable encoding, as this is mostly useful only for
  38. academic research.
  39. The decoder has been updated to meet the final MPEG specification,
  40. although the old decoder will still reconstruct Main Profile and MPEG-1
  41. bitstreams just fine.  The current decoder implements the most
  42. important case of Spatial scalability, as well as SNR and Data
  43. Partitioning.  Temporal scalability is not implemented.
  44. 2. Introduction
  45. ===============
  46. MPEG-2 Video is a generic method for compressed representation of video
  47. sequences using a common coding syntax defined in the document ISO/IEC
  48. 13818 Part 2 by the International Organization for Standardization
  49. (ISO) and the International Electrotechnical Commission (IEC), in
  50. collaboration with the International Telecommunications Union (ITU) as
  51. Recommendation H.262.  The MPEG-2 concept is similar to MPEG-1, but
  52. includes extensions to cover a wider range of applications.
  53. The primary application targeted during the MPEG-2 definition process
  54. was the all-digital transmission of interlaced broadcast TV quality
  55. video at coded bitrates between 4 and 9 Mbit/sec.  However, the MPEG-2
  56. syntax has been found to be efficient for other applications such as
  57. those at higher bit rates and sample rates (e.g. HDTV). 
  58. The most significant enhancement over MPEG-1 is the addition of syntax
  59. for efficient coding of interlaced video (e.g. 16x8 block sizes for
  60. motion compensation, field dct organization, Dual Prime prediction, et
  61. al).  Several other more subtle enhancements (e.g. 10-bit DCT DC
  62. precision, non-linear macroblock scale quantizer, intra VLC tables,
  63. improved IDCT mismatch control) were adopted which have a moderate 
  64. improvement in coding efficiency.... even for progressive video sequences.
  65. Other key features of MPEG-2 are the scalable extensions which permit
  66. the division of a continuous video signal into two or more coded bitstreams 
  67. representing the video at different resolutions (spatial scalability), 
  68. picture quality (SNR scalability and data partioning), or frame 
  69. rates (temporal scalability).
  70. The MPEG Software Simulation Group is currently developing MPEG
  71. software with the purpose of providing aid in understanding the various
  72. algorithms which comprise an encoder and decoder, and giving a sample
  73. implementation based on advanced encoding models. The MPEG-2 software
  74. project is an on-going development. Since the current version of the
  75. encoder already employs a reasonable (and the most popular) subset of
  76. the MPEG-2 signal coding toolkit (MPEG-1 and MPEG-2 Main Profile), and 
  77. there appears to be sufficient public interest, we have decided to make 
  78. a public release of the code.
  79. The encoder can also be used for generating good quality constant
  80. bitrate MPEG-1 sequences and is (to our knowledge) the first publicly
  81. available encoder based on the relatively sophisticated TM5 coding model.
  82. 3. Contacting the MPEG Software Simulation Group
  83. ================================================
  84. We welcome any project-specific questions, comments, suggestions, bug
  85. reports etc. They should be sent to the Internet E-mail address: 
  86.       mssg@mpeg.org
  87. which automatically forwards to the software authors.
  88. 4. Availability
  89. ===============
  90. The most recent version of the codec source code is available by anonymous
  91. ftp from:
  92.   ftp://ftp.mpeg.org/pub/mpeg/mssg/
  93. The directory contains the following files:
  94.   mpeg2vidcodec_v12.tar.gz          codec source code and documentation
  95.   mpeg2v12.zip                      source code and Win32s executables
  96.  
  97. You need gunzip (GNU zip/unzip) to uncompress the .gz and .zip archives.
  98. 5. Installation
  99. ===============
  100. mpeg2decode and mpeg2encode have been compiled and tested on the following
  101. platforms:
  102.  - SUN SPARCstation 10, SunOS 4.1.3, (gcc compiler)
  103.  - '386-PC, MSDOS 5.0, djgpp v1.11, gcc v2.5.7 and MS Visual C++ 4.0
  104. The source code should compile without major modifications on other 32
  105. bit systems with ANSI C compliant compilers. Systems with 16 bit 'int'
  106. variables or segmented memory models are not supported.
  107. Please report any modifications you had to apply in order to install the
  108. programs on your system to the address mssg@mpeg.org      
  109. The encoder and decoder are kept in separate sub-directories,
  110. src/mpeg2dec contains the decoder, while src/mpeg2enc contains the
  111. encoder sources.  The following installation procedure applies to both
  112. the encoder and the decoder:
  113. Step 1: edit Makefile
  114. ---------------------
  115. You may have to set CC to your C compiler and CFLAGS to the flags required
  116. by the compiler. It is sufficient to set these variables in the top directory
  117. Makefile. They are propagated to the individual Makefiles of the encoder
  118. and decoder. Any other changes have to be applied to the individual Makefiles,
  119. however.
  120. You can compile the decoder with or without X11 output. Please follow the
  121. instructions in the top-level Makefile to activate X Window System support.
  122. Step 2: edit src/mpeg2dec/config.h
  123. ----------------------------------
  124. In most cases, no modification should be required. If your C library
  125. doesn't accept "rb" / "wb" parameters in fopen() (required to disable
  126. LF <-> CR/LF conversion on MSDOS systems), change the #defines RB and WB
  127. to "r" and "w".
  128. Step 3: make
  129. ------------
  130. Type 'make' from the top directory (mpeg2). On a PC with DJGPP installed you
  131. have to enter 'make pc' in the individual source directories to produce
  132. .exe files.
  133. Step 4: verification
  134. --------------------
  135. In the mpeg/verify directory, you can verify correct compilation of the
  136. codec by typing 'make test'. No differences should be reported. The
  137. only comparison which is allowed to fail is between test.m2v and
  138. new.m2v, caused by floating point accuracy dependencies in the forward
  139. DCT.
  140. 6. Acknowledgements
  141. ===================
  142. Authors of the current release are:
  143.   Stefan Eckart    <stefan@chromatic.com>
  144.   Chad Fogg        <cfogg@chromatic.com>
  145. 420to422, 422to444 scaling filters:
  146.   Cheung Auyeung   <auyeung@mot.com>
  147. Windows 32s port:
  148.   Sorin Papuc      <sop@compcore.com>
  149. Special thanks are due to
  150.  - J. Steurer, M. Oepen, IRT (Institut fuer Rundfunktechnik, Muenchen):
  151.    for contributing motion estimation speed improvements (distance
  152.    computation short-circuit in conjunction with spiral search, cf.
  153.    dist1(), fullsearch())
  154.  - Tristan Savatier <tristan@mpeg.org> for his help on numerous 
  155.    improvements, suggestions, and features.
  156.  Numerous users:
  157.    for providing bug reports and Makefiles
  158. 7. History of Technical Report Project
  159. ======================================
  160. The Technical Report, a document which primarily consists of
  161. a C source code program, was initiated by the MPEG committee to: 
  162.  - Provide an example of MPEG video syntax being intelligently employed 
  163.    to generate good quality video bitstreams.
  164.  - A reference tool for implementors
  165.  - Aid in understanding the MPEG specification 
  166.  - decoder which employs full arithmetic accuracy.
  167. ----
  168. End of Readme file