h264codec

所属分类:流媒体/Mpeg4/MP4
开发工具:Visual C++
文件大小:2077KB
下载次数:487
上传日期:2008-01-02 00:50:50
上 传 者smilodon-wangxc
说明:  VC++实现H.264视频压缩编码技术和实现,过程较为完整
(VC++ Achieve H.264 video compression coding technology and the realization of a more comprehensive process)

文件列表:
H264CODEC (0, 2008-01-02)
H264CODEC\bin (0, 2008-01-02)
H264CODEC\bin\decoder.cfg (1042, 2005-09-07)
H264CODEC\bin\encoder.cfg (23164, 2005-09-09)
H264CODEC\bin\encoder_baseline.cfg (13316, 2005-09-05)
H264CODEC\bin\encoder_extended.cfg (13316, 2005-09-05)
H264CODEC\bin\encoder_highquality_HD.cfg (15736, 2005-09-05)
H264CODEC\bin\encoder_main.cfg (13315, 2005-09-05)
H264CODEC\bin\encoder_yuv422.cfg (15744, 2005-09-05)
H264CODEC\bin\encoder_yuv444.cfg (15744, 2005-09-05)
H264CODEC\bin\foreman_part_qcif.yuv (114048, 2001-09-03)
H264CODEC\bin\foreman_part_qcif_422.yuv (152064, 2004-10-15)
H264CODEC\bin\foreman_part_qcif_444.yuv (228096, 2004-10-15)
H264CODEC\bin\ldecod.exe (311296, 2006-02-18)
H264CODEC\bin\ldecod.map (140129, 2006-02-18)
H264CODEC\bin\ldecod.pdb (746496, 2006-02-18)
H264CODEC\bin\leakybucketrate.cfg (16, 2001-12-20)
H264CODEC\bin\lencod.exe (880677, 2006-02-18)
H264CODEC\bin\lencod.map (295096, 2006-02-18)
H264CODEC\bin\lencod.pdb (1164288, 2006-02-18)
H264CODEC\bin\q_matrix.cfg (1526, 2005-07-19)
H264CODEC\bin\q_matrix2.cfg (1244, 2004-10-15)
H264CODEC\bin\q_matrix_def.cfg (1244, 2004-10-15)
H264CODEC\bin\q_offset.cfg (3357, 2005-04-11)
H264CODEC\bin\sg0conf.cfg (66, 2004-05-25)
H264CODEC\bin\sg2conf.cfg (126, 2004-05-25)
H264CODEC\bin\sg6conf.cfg (1188, 2004-05-25)
H264CODEC\ldecod (0, 2008-01-02)
H264CODEC\ldecod\inc (0, 2008-01-02)
H264CODEC\ldecod\inc\annexb.h (648, 2004-09-16)
H264CODEC\ldecod\inc\biaridecod.h (1299, 2003-05-13)
H264CODEC\ldecod\inc\block.h (848, 2004-11-16)
H264CODEC\ldecod\inc\cabac.h (2763, 2004-10-15)
H264CODEC\ldecod\inc\context_ini.h (598, 2003-06-13)
H264CODEC\ldecod\inc\contributors.h (6409, 2005-09-09)
H264CODEC\ldecod\inc\ctx_tables.h (51159, 2004-10-15)
H264CODEC\ldecod\inc\defines.h (4972, 2005-06-15)
H264CODEC\ldecod\inc\elements.h (3640, 2004-07-06)
H264CODEC\ldecod\inc\erc_api.h (5342, 2005-09-09)
... ...

JM Reference Software Manual ============================ please send comments and additions to suehring@hhi.de 1. Compilation 2. Command line parameters 3. Input/Output file format 4. Configuration files 5. Platform specific notes 1. Compilation -------------- 1.1 Windows ----------- A workspace for MS Visual C++ is provided with the name "tml.dsw". It contains the encoder and decoder projects. 1.2 Unix ----------- Before compiling in a UNIX environment please run the "unixprep.sh" script which will remove the DOS LF characters from the files and create object directories. Makefiles for GNU make are provided in the lencod and ldecod directory. 2. Command line parameters -------------------------- 2.1 Encoder ----------- lencod.exe [-h] [-d default-file] [-f file] [-p parameter=value] All Parameters are initially taken from DEFAULTCONFIGFILENAME, defined in configfile.h (typically: "encoder.cfg") -h Show help on parameters. -d default-file Use the specified file as default configuration instead of the file in DEFAULTCONFIGFILENAME. -f file If an -f parameter is present in the command line then this file is used to update the defaults of DEFAULTCONFIGFILENAME. There can be more than one -f parameters present. -p parameter=value If -p parameters are present then these overide the default and the additional config file's settings, and are themselfes overridden by future -p parameters. There must be whitespace between -f and -p commands and their respecitive parameters. 2.2 Decoder ----------- ldecod.exe decoder.cfg The decoder configuration file name must be provided as the first parameter. All decoding parameters are read from this file. 3. Input/Output file format --------------------------- The source video material is read from raw YUV 4:2:0 data files. For output the same format is used. 4. Configuration files ---------------------- Sample encoder and decode configuration files are provided in the bin/ directory. These contain explanatory comments for each parameter. The generic structure is explained here. 4.1 Encoder ----------- = # Comments Whitespace is space and \t are the predefined names for Parameters and are case sensitive. See configfile.h for the definition of those names and their mapping to configinput->values. are either integers [0..9]* or strings. Integers must fit into the wordlengths, signed values are generally assumed. Strings containing no whitespace characters can be used directly. Strings containing whitespace characters are to be inclosed in double quotes ("string with whitespace") The double quote character is forbidden (may want to implement something smarter here). Any Parameters whose ParameterName is undefined lead to the termination of the program with an error message. Known bug/Shortcoming: zero-length strings (i.e. to signal an non-existing file have to be coded as "". 4.2 Decoder ----------- #comment The values are read in a predefined order. See the example file for details. 5. Platform specific notes -------------------------- This section contains hints for compiling and running the JM software on different operating systems. 5.1 MacOS X ----------- MacOs X has a UNIX core so most of the UNIX compile process will work. You might need the following modifications: a) in Makefile change "CC = $(shell which gcc)" to "CC = gcc" (it seems "which" doesn't work) b) MacOS X (before "Tiger") doesn't come with ftime. We suggest using a third party ftime implementation, e.g. from: http://darwinsource.opendarwin.org/10.3.4/OpenSSL096-3/openssl/crypto/ftime.c 5.2 FreeBSD ----------- You might need to add "-lcompat" to LIBS in the Makefiles for correct linking.

近期下载者

相关文件


收藏者